StringCollection typedef

StringCollection = List<String>

A list of strings.

{@tool snippet}

StringCollection tags = ['dart', 'flutter', 'backend'];
print(tags.contains('flutter')); // true

{@end-tool}

Implementation

typedef StringCollection = List<String>;