Skip to content

Instantly share code, notes, and snippets.

@thoradam
Created November 1, 2024 12:21
Show Gist options
  • Save thoradam/e38140e8dd15fb2cd5183f2999230403 to your computer and use it in GitHub Desktop.
Save thoradam/e38140e8dd15fb2cd5183f2999230403 to your computer and use it in GitHub Desktop.
Dart nullability
void main() {
String? foo;
if (foo == null) {
print("it truly can be null");
} else {
print("not null");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment