UdRadioButton constructor
UdRadioButton({
- double? size,
- double? innerMargin,
- double? borderRadius,
- String? title,
- double? titleFontSize,
- Color? titleColor,
- FontWeight? titleWeight,
- MainAxisAlignment? mainAxisAlignment,
- bool? checked,
- dynamic value,
- int? index,
- ValueChanged? onTap,
- ValueChanged<
int?> ? getIndex, - bool? skipTraversal,
You can modify this radio button passing values by your choice.
Implementation
UdRadioButton(
{this.size,
this.innerMargin,
this.borderRadius,
this.title,
this.titleFontSize,
this.titleColor,
this.titleWeight,
this.mainAxisAlignment,
this.checked,
this.value,
this.index,
this.onTap,
this.getIndex,
this.skipTraversal});