HMRadio constructor

const HMRadio({
  1. bool disabled = false,
  2. bool hidden = false,
  3. required List radioList,
  4. HMRadioSize? size,
  5. required String value,
  6. bool? isLeft,
  7. HMRadius? boxRadius,
  8. Color? textColor,
  9. Widget? divider,
  10. Color? radioColor,
  11. required void onChanged(
    1. dynamic value
    ),
  12. Key? key,
})

Implementation

const HMRadio(
    {this.disabled = false,
    this.hidden = false,
    required this.radioList,
    this.size,
    required this.value,
    this.isLeft,
    this.boxRadius,
    this.textColor,
    this.divider,
    this.radioColor,
    required this.onChanged,
    super.key});