where method

DelayedStateNotifier<T> where(
  1. bool test(
    1. T
    )
)

Filters incoming events by test

Implementation

DelayedStateNotifier<T> where(bool Function(T) test) {
  return _FunctionalStateNotifier<T, T>(this, name: 'where').where(test);
}