filterNonNullable method
In case theres a value, keep it only if it is not null
, otherwise
return None.
Implementation
@Deprecated('Use whereNotNull, as it has an better name')
Maybe<T> filterNonNullable() => whereNotNull();
In case theres a value, keep it only if it is not null
, otherwise
return None.
@Deprecated('Use whereNotNull, as it has an better name')
Maybe<T> filterNonNullable() => whereNotNull();