Skip to content

Instantly share code, notes, and snippets.

@simonpai
Last active August 29, 2015 14:05
Show Gist options
  • Save simonpai/d8826237194edc954714 to your computer and use it in GitHub Desktop.
Save simonpai/d8826237194edc954714 to your computer and use it in GitHub Desktop.
Dart has a way to do factory constructor alias...
class A extends B {
A();
factory A.x() => new A();
factory A.y() = A.x;
}
class B {
B();
factory B.y() = A.x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment