choice property

  1. @override
S2Choice<T>? choice
override

Returns the choice item(s)

Implementation

@override
S2Choice<T>? get choice => _choice;
  1. @override
void choice=(covariant S2Choice<T>? val)
covariantoverride

Override choice(s) in the current selection with a new value(s), and validate it

Implementation

@override
set choice(S2Choice<T>? val) {
  _choice = val;
  validate();
}