This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(const MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| const MyApp({Key? key}) : super(key: key); | |
| @override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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}'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| print('I \u2764 \u{1F3AF}'); | |
| } |
NewerOlder