where method

  1. @override
Nothing<T> where(
  1. bool predicate(
    1. T value
    )
)
override

Filter the value using the predicate.

Implementation

@override
Nothing<T> where(bool Function(T value) predicate) => this;