JuiRadio.secondary constructor

JuiRadio.secondary({
  1. Key? key,
  2. String? title,
  3. required dynamic value,
  4. required dynamic groupValue,
  5. ValueChanged? onChanged,
  6. bool? disabled,
  7. bool center = false,
  8. EdgeInsets? padding,
  9. bool? isFontBigWeight,
})

Implementation

JuiRadio.secondary({
  Key? key,
  String? title,
  required dynamic value,
  required dynamic groupValue,
  ValueChanged<dynamic>? onChanged,
  super.disabled,
  super.center,
  super.padding,
  super.isFontBigWeight,
}) : super.secondary(
        key: key,
        juiOptionType: JuiOptionType.radio,
        value: value,
        groupValue: groupValue,
        onChanged: onChanged,
        title: title,
      );