filter method
Filters elements based on a predicate (alias for where).
Implementation
Iterable<T> filter(ConditionTester<T> test) => where(test);
Filters elements based on a predicate (alias for where).
Iterable<T> filter(ConditionTester<T> test) => where(test);