public ChoiceCard(Key key = null, Choice choice = null) : base(key: key) { this.choice = choice; }
void _select(Choice choice) { this.setState(() => { this._selectedChoice = choice; }); }