Maybe<T>.nothing constructor

Maybe<T>.nothing()

Implementation

Maybe.nothing()
    : _isNothing = true,
      _value = null;