Created
October 22, 2020 17:23
-
-
Save timsneath/9fc65c487e91fc1aa622c25ddc354fb2 to your computer and use it in GitHub Desktop.
nullsafe.dart
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
// In null-safe Dart, none of these can ever be null. | |
var widget = Text('Hello'); | |
final status = GetStatus(); | |
String m = ''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment