9 lines
143 B
Dart
9 lines
143 B
Dart
// #docregion
|
|
class Hero {
|
|
final int id;
|
|
final String name;
|
|
final bool isSecret;
|
|
|
|
Hero(this.id, this.name, [this.isSecret = false]);
|
|
}
|