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