Wrap this into an Maybe<T> with null representing None.
this
null
Maybe<T> get maybe => this == null ? None() : Just(this!);