removeWhere method

void removeWhere(
  1. bool condition(
    1. T t,
    2. Set<T> currSet
    )
)

Implementation

void removeWhere(bool Function(T t, Set<T> currSet) condition) => change(() => _set.removeWhere((t) => condition(t, set)));