Skip to content

Instantly share code, notes, and snippets.

@Zambrella
Created August 15, 2020 22:05
Show Gist options
  • Save Zambrella/4caefbee9d3ca713a3a4ec6a2761d24b to your computer and use it in GitHub Desktop.
Save Zambrella/4caefbee9d3ca713a3a4ec6a2761d24b to your computer and use it in GitHub Desktop.
Help plz
abstract class Entry {
String name;
Entry(this.name);
void something();
}
class BM extends Entry {
BM(Entry entry) : super(name);
int bristolScale;
int discomfort;
int amount;
//BM({this.amount, this.discomfort, this.bristolScale});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment