Skip to content

Instantly share code, notes, and snippets.

@luanpotter
Created March 29, 2021 00:14
Show Gist options
  • Save luanpotter/e2148d721694bd301dcfea47190bad23 to your computer and use it in GitHub Desktop.
Save luanpotter/e2148d721694bd301dcfea47190bad23 to your computer and use it in GitHub Desktop.
String? a = null;
print(a ?? "foo"); // will print foo, similar to (a != null ? a : "foo")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment