RadioGroupSingleSelectionModel<T> constructor

RadioGroupSingleSelectionModel<T>([
  1. T? initialValue
])

Implementation

RadioGroupSingleSelectionModel([T? initialValue])
    : super(SelectionModel<T>.single(selected: initialValue)
          as SingleSelectionModel<T>);