filter method
- bool test(
- E
Filter items that match condition.
Implementation
void filter(bool Function(E) test) {
emit(val.where(test).toList());
}
Filter items that match condition.
void filter(bool Function(E) test) {
emit(val.where(test).toList());
}