CustomRadioTileWidget<T> constructor
const
CustomRadioTileWidget<T> ({
- Key? key,
- required T value,
- required T? groupValue,
- required String title,
- required ValueChanged<
T?> onChanged, - Color? activeColor,
- bool showDivider = true,
Implementation
const CustomRadioTileWidget({
super.key,
required this.value,
required this.groupValue,
required this.title,
required this.onChanged,
this.activeColor,
this.showDivider = true,
});