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