where method

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

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

Implementation

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