unwrap method

T? unwrap()

Implementation

T? unwrap() {
  return _isNothing ? null : _value;
}