8 lines
80 B
Dart
8 lines
80 B
Dart
// #docregion
|
|
|
|
class Hero {
|
|
num id;
|
|
String name;
|
|
bool isSecret = false;
|
|
}
|