Skip to content

Instantly share code, notes, and snippets.

@benznest
Created March 17, 2019 07:45
Show Gist options
  • Select an option

  • Save benznest/4fe22958104afaf47a0f7e7be2e8c750 to your computer and use it in GitHub Desktop.

Select an option

Save benznest/4fe22958104afaf47a0f7e7be2e8c750 to your computer and use it in GitHub Desktop.
Get method in Dart
class Spacecraft{
String name;
bool available;
Spacecraft(this.name,this.available);
String get getFullName => "The spacraft name is "+name;
}
class Astronaut{
String name;
}
main(){
Spacecraft sc = Spacecraft("USS Discovery",true);
print(sc?.getFullName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment