Skip to content

Instantly share code, notes, and snippets.

@MyStoryG
Created October 29, 2020 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MyStoryG/635d62b6071f3903cc2c569181ebcb48 to your computer and use it in GitHub Desktop.
Save MyStoryG/635d62b6071f3903cc2c569181ebcb48 to your computer and use it in GitHub Desktop.
getter and setter example in dart
class Person {
String _name;
String get name => _name;
set setName(String name) => _name = name;
}
main() {
Person person = Person();
person.setName = 'Kim';
print(person.name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment