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