FMultiValueControl<T>.managedRadio constructor

const FMultiValueControl<T>.managedRadio({
  1. FMultiValueNotifier<T>? controller,
  2. T? initial,
  3. ValueChanged<Set<T>>? onChange,
})

Creates a FMultiValueControl for single value selection.

The initial parameter contains the initially selected value. It may be null. The onChange callback is invoked when the user selects a different item.

Implementation

const factory managedRadio({FMultiValueNotifier<T>? controller, T? initial, ValueChanged<Set<T>>? onChange}) =
    _Radio<T>;