FlutterFormInputRadioPicker constructor

const FlutterFormInputRadioPicker({
  1. required List<RadioItem> items,
  2. Key? key,
  3. dynamic onSaved(
    1. RadioItem?
    )?,
  4. dynamic onChanged(
    1. RadioItem?
    )?,
  5. String? initialValue,
})

Implementation

const FlutterFormInputRadioPicker({
  required this.items,
  super.key,
  this.onSaved,
  this.onChanged,
  this.initialValue,
});