where method

  1. @override
GgValueStream<T> where(
  1. bool filter(
    1. T
    )
)
override

Returns a new stream which only delivers elements that match filter. Important: The first value yielded by this stream might not match the filter. This is necessary to provide a non-nullable value.

Implementation

@override
GgValueStream<T> where(bool Function(T) filter) =>
    _WhereValueStream(this, filter);