Skip to content

Instantly share code, notes, and snippets.

@PythonDotLand
Created September 9, 2021 06:11
Show Gist options
  • Select an option

  • Save PythonDotLand/3c097c5c07ec6b780567f5bcd20009f6 to your computer and use it in GitHub Desktop.

Select an option

Save PythonDotLand/3c097c5c07ec6b780567f5bcd20009f6 to your computer and use it in GitHub Desktop.
class Person {
String name;
int age;
Person(this.name, this.age);
void lieAboutMyAge() {
print("My name is $name, my age is ${age - 10}");
}
}
void main() {
final me = Person("Erik", 38);
var girlfriend = Person("Shannon", 30);
me.lieAboutMyAge();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment