choice property
Returns a single selected S2Choice
Implementation
@override
S2Choice<T>? get choice {
return _choice;
}
Override the selected choice with a new one, and validate it
Implementation
@override
set choice(S2Choice<T>? val) {
_choice = val;
////////////// ???????????? /////////////
// _value = null;
////////////// ???????????? /////////////
validate();
}