8 lines
89 B
Dart
8 lines
89 B
Dart
|
// #docregion
|
||
|
class Hero {
|
||
|
final int id;
|
||
|
String name;
|
||
|
|
||
|
Hero(this.id, this.name);
|
||
|
}
|