select method

  1. @override
void select(
  1. S2Choice<T> choice, {
  2. bool selected = true,
})
override

Select or unselect a choice

Implementation

@override
void select(S2Choice<T> choice, {bool selected = true}) {
  _choice = choice;
  validate();
}