class Hero { bool active = false; final String name; final List team; Hero(this.name, this.team); }