Skip to content

Instantly share code, notes, and snippets.

@matanlurey
Created July 18, 2022 00:36
Show Gist options
  • Save matanlurey/2f93815fe7924fe017ac5f924c18aa6a to your computer and use it in GitHub Desktop.
Save matanlurey/2f93815fe7924fe017ac5f924c18aa6a to your computer and use it in GitHub Desktop.
rustic-utopia-8178
void main() {
late final a = Animal();
print('Meow');
print(a.sound);
}
class Animal {
Animal() {
print('CREATED: Animal');
}
String get sound => 'Woof';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment