filterNot method

Iterable<T> filterNot(
  1. bool predicate(
    1. T it
    )
)

Returns a list containing only elements matching the given predicate.

Implementation

Iterable<T> filterNot(bool Function(T it) predicate) => where(predicate);