StringSet typedef

StringSet = Set<String>

A set of unique strings.

{@tool snippet}

StringSet uniqueTags = {'dart', 'flutter', 'dart'};
print(uniqueTags.length); // 2

{@end-tool}

Implementation

typedef StringSet = Set<String>;