Skip to content

Instantly share code, notes, and snippets.

@gsathya
Last active March 29, 2016 16:25
Show Gist options
  • Save gsathya/12b1b58b67925277d7fa to your computer and use it in GitHub Desktop.
Save gsathya/12b1b58b67925277d7fa to your computer and use it in GitHub Desktop.
abstract class Foo {
String item;
}
class Bar extends Foo {
@override
String item;
Bar() { item = "yolo"; }
}
Vs
abstract class Foo {
String item;
}
class Bar extends Foo {
Bar() { item = "yolo"; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment