CupertinoRadioListTile<T> constructor
Creates a new radio list tile with the given value, groupValue and onChanged callback.
This control is deemed selected when the value is the same as the group value.
When you set toggable to true
the value of a selected element can be reset to null.
Implementation
const CupertinoRadioListTile({
Key? key,
required this.value,
required this.groupValue,
required this.onChanged,
this.title,
this.subtitle,
this.contentPadding,
this.activeColor,
this.toggable = false,
}) : super(key: key);