where method

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

Filters all models of the list (if present) through test

Implementation

DataStateNotifier<T> where(bool Function(T) test) {
  return _FunctionalDataStateNotifier<T, T>(this).where(test);
}