7 lines
75 B
Dart
7 lines
75 B
Dart
class Hero {
|
|
final int id;
|
|
String name;
|
|
|
|
Hero(this.id, this.name);
|
|
}
|