filterNotTo method

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

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

Implementation

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