7 lines
79 B
Dart
Raw Normal View History

// #docregion
class Hero {
num id;
String name;
bool isSecret = false;
}