addAllWhere method

void addAllWhere(
  1. Iterable<T> toAdd,
  2. bool condition(
    1. T t,
    2. Set<T> currSet
    )
)

Implementation

void addAllWhere(Iterable<T> toAdd, bool Function(T t, Set<T> currSet) condition) => change(() => _set.addAll(toAdd.where((t) => condition(t, set))));