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