Created
March 17, 2019 07:45
-
-
Save benznest/4fe22958104afaf47a0f7e7be2e8c750 to your computer and use it in GitHub Desktop.
Get method in Dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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