FutureOrOption<T> typedef
Represents a FutureOr that is or completes with an Option of the given type T
.
This is simply a convenience typedef to save a couple characters.
Implementation
typedef FutureOrOption<T> = FutureOr<Option<T>>;