where method

ListObservable<T> where(
  1. bool predicate(
    1. T
    )
)

where method.

Implementation

ListObservable<T> where(bool Function(T) predicate) {
  throwIfDisposed('where');
  return ListObservable<T>(value.where(predicate).toList());
}