Control.radio constructor

Control.radio({
  1. required List<RadioItem<String>> items,
  2. required String key,
  3. String? description,
  4. String? title,
  5. String? selected,
  6. void onChange(
    1. dynamic
    )?,
  7. Widget? prefixIcon,
})

Implementation

factory Control.radio({
  required List<RadioItem<String>> items,
  required String key,
  String? description,
  String? title,
  String? selected,
  void Function(dynamic)? onChange,
  Widget? prefixIcon,
}) =>
    Control(
      value: {'items': items, 'selected': selected},
      type: ControlType.radio,
      title: title,
      description: description,
      onChange: onChange,
      key: key,
      prefixIcon: prefixIcon,
    );