// #docregion
class Hero {
int id;
String name;
Hero(this.id, this.name);
String toString() => '$id: $name';
}
// #enddocregion