I want to create an empty set for a Flutter project.
I tried this but I get an error:
Set<String> mySet = [];
Error: A value of type 'List' can't be assigned to a variable of type 'Set'.
I found an old question of mine for lists but it doesn't apply to sets.