clear method - SetBase class - dart:collection library (original) (raw)
void clear()
override
Removes all elements from the set.
final characters = <String>{'A', 'B', 'C'};
characters.clear(); // {}
Implementation
void clear() {
removeAll(toList());
}