none method

bool none(
  1. bool condition(
    1. E t,
    2. List<E> currList
    )
)

Implementation

bool none(bool Function(E t, List<E> currList) condition) => _list.none((t) => condition(t, list));