AFieldRadioGroup constructor

const AFieldRadioGroup({
  1. required List<Option> options,
  2. void onChanged(
    1. int?
    )?,
  3. Key? key,
  4. bool readOnly = false,
  5. bool required = false,
  6. int? initialValue,
  7. String label = '',
  8. required String identifier,
  9. EdgeInsets? margin,
  10. bool linkToAForm = true,
  11. VoidCallback? onSubmit,
  12. List<ARule<int>>? customRules,
  13. bool expanded = false,
  14. int? flexible,
  15. EdgeInsets? padding,
  16. bool readonly = false,
})

Implementation

const AFieldRadioGroup({
  required this.options,
  super.onChanged,
  super.key,
  super.readOnly,
  super.required,
  super.initialValue,
  String super.label = '',
  required super.identifier,
  super.margin,
  super.linkToAForm,
  super.onSubmit,
  super.customRules,
  super.expanded,
  super.flexible,
  super.padding,
  super.readonly,
});