Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created November 25, 2019 23:38
Show Gist options
  • Save r3dm1ke/bd480952cbe40765fe94a61ca88e79c2 to your computer and use it in GitHub Desktop.
Save r3dm1ke/bd480952cbe40765fe94a61ca88e79c2 to your computer and use it in GitHub Desktop.
Mixins in Dart
mixin Battery {
int level = 100;
void die() {
this.level = 0;
}
}
class Laptop extends Computer with Battery {
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment