UdRadioButton constructor

UdRadioButton({
  1. double? size,
  2. double? innerMargin,
  3. double? borderRadius,
  4. String? title,
  5. double? titleFontSize,
  6. Color? titleColor,
  7. FontWeight? titleWeight,
  8. MainAxisAlignment? mainAxisAlignment,
  9. bool? checked,
  10. dynamic value,
  11. int? index,
  12. ValueChanged? onTap,
  13. ValueChanged<int?>? getIndex,
  14. 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});