removeWhere method Null safety
- bool test(
- K,
- V
override
Removes all entries of this map that satisfy the given test
.
Implementation
@override
void removeWhere(bool Function(K, V) test) => _base.removeWhere(test);
Removes all entries of this map that satisfy the given test
.
@override
void removeWhere(bool Function(K, V) test) => _base.removeWhere(test);