RadioPicker<T> constructor
RadioPicker<T> ({
- Key? key,
- required List<
T> items, - T? initialValue,
- required ValueChanged<
T?> onChanged, - Transformer<
T> ? transformer,
Implementation
RadioPicker({
Key? key,
required this.items,
this.initialValue,
required this.onChanged,
this.transformer,
}) : super(key: key);