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