removeWhere method Null safety

void removeWhere(
  1. bool test(
    1. String name
    )
)
inherited

Removes all elements of this set that satisfy test.

Implementation

void removeWhere(bool test(String name)) {
  modify((s) => s.removeWhere(test));
}