// #docregion class Hero { final int id; final String name; final bool isSecret; Hero(this.id, this.name, [this.isSecret = false]); }