9 lines
118 B
Dart
9 lines
118 B
Dart
|
class Hero {
|
||
|
bool active = false;
|
||
|
|
||
|
final String name;
|
||
|
final List<String> team;
|
||
|
|
||
|
Hero(this.name, this.team);
|
||
|
}
|