Skip to content

Instantly share code, notes, and snippets.

@zidenis
Created April 30, 2017 19:31
Show Gist options
  • Save zidenis/d539247177490033fe7945912beffbe3 to your computer and use it in GitHub Desktop.
Save zidenis/d539247177490033fe7945912beffbe3 to your computer and use it in GitHub Desktop.
null aware assignment
var languageA = "Dart";
var languageB = null;
languageA ??= "not Dart";
languageB ??= "not Dart";
print(languageA); // "Dart"
print(languageB); // "not Dart"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment