Skip to content

Instantly share code, notes, and snippets.

@fladago
Created July 29, 2021 10:40
Show Gist options
  • Save fladago/864fd11f9c2642c20987785b1f613676 to your computer and use it in GitHub Desktop.
Save fladago/864fd11f9c2642c20987785b1f613676 to your computer and use it in GitHub Desktop.
void main() {
final List<String> flutterMasters = ['@dushesatwork', '@BleylDev', '@tadaspetra', '@JohannesMilke', '@sachaarbonel', '@BleylDev'];
print(flutterMasters);
print('Length of collection: ${flutterMasters.length}');
final Set <String> uniqueMasters = {...flutterMasters};
print(uniqueMasters);
print('Length of collection: ${uniqueMasters.length}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment