Returns the contained value. Returns null if no value is present.
Example:
var opt = Optional.of<string> ("hello"); assert (opt.get () == "hello");
the value, or null if empty.