2016-04-11 09:52:52 -07:00

9 lines
106 B
Dart

// #docregion
class Hero {
final int id;
String name;
Hero(this.id, this.name);
}
// #enddocregion