filterNotTo method

void filterNotTo(
  1. List<T> destination,
  2. bool predicate(
    1. T element
    )
)

Appends all elements not matching the given predicate to the given destination.

Implementation

void filterNotTo(List<T> destination, bool predicate(T element)) =>
    whereNotTo(destination, predicate);