filter method
Returns None if the predicate noFuturesAllowed
returns false
.
Otherwise, returns the original Option.
Implementation
@override
@pragma('vm:prefer-inline')
None<T> filter(@noFuturesAllowed bool Function(T value) noFuturesAllowed) {
return const None();
}