Alias for a flow of a maybe result.
val maybe: MaybeFlow<String> = flow { // Emit a Maybe from inside the Flow emit(maybeOf { "A value." })}