Skip to content

Instantly share code, notes, and snippets.

@msmorgan
Created April 25, 2020 15:49
Show Gist options
  • Save msmorgan/dfa2410bf14573da0d58c7823c5c9062 to your computer and use it in GitHub Desktop.
Save msmorgan/dfa2410bf14573da0d58c7823c5c9062 to your computer and use it in GitHub Desktop.
class A {
final name = 'A';
void printName() {
print(name);
}
}
class B extends A {
@override
String get name => 'B';
void printSuperName() {
print(super.name);
}
}
void main() {
final a = A();
a.printName();
final b = B();
b.printName();
b.printSuperName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment