none method

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

Implementation

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