whereList method

RxComputed<List<T>> whereList(
  1. bool predicate(
    1. T
    )
)

Filter list reactively

Implementation

RxComputed<List<T>> whereList(bool Function(T) predicate) {
  return computed(() => value.where(predicate).toList());
}