clear abstract method
Removes all elements from the set.
final characters = <String>{'A', 'B', 'C'};
characters.clear(); // {}
Implementation
void clear();
Removes all elements from the set.
final characters = <String>{'A', 'B', 'C'};
characters.clear(); // {}
void clear();