filterNonNullable method
- @Deprecated('Use whereNotNull, as it has an better name')
- @Deprecated('Deprecated for non nullable types!')
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')
@Deprecated('Deprecated for non nullable types!')
Maybe<T> filterNonNullable() => this;