Skip to content

Instantly share code, notes, and snippets.

@benznest
Created March 17, 2019 07:33
Show Gist options
  • Save benznest/cc85152097c120031c0622872732fd59 to your computer and use it in GitHub Desktop.
Save benznest/cc85152097c120031c0622872732fd59 to your computer and use it in GitHub Desktop.
Null conditional in Dart
class Spacecraft{
Astronaut astronaut;
}
class Astronaut{
String name;
}
main(){
Spacecraft sc = Spacecraft ();
String astronautName = sc?.astronaut?.name ?? "Neil Armstrong";
print(astronautName); // ""Neil Armstrong"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment