Control.radio constructor
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,
);