Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created November 25, 2019 23:31
Show Gist options
  • Save r3dm1ke/dee433106cf138d180dbac77753091d1 to your computer and use it in GitHub Desktop.
Save r3dm1ke/dee433106cf138d180dbac77753091d1 to your computer and use it in GitHub Desktop.
Class inheritance in Dart
class MacPro extends Computer {
double price;
MacPro(String hostname, int numberOfCores, this.price) : super(hostname, numberOfCores);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment