Created
August 15, 2020 22:05
-
-
Save Zambrella/4caefbee9d3ca713a3a4ec6a2761d24b to your computer and use it in GitHub Desktop.
Help plz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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