JsonRadioBuilder constructor
JsonRadioBuilder({
- Color? activeColor,
- required bool autofocus,
- AutovalidateMode? autovalidateMode,
- required bool enabled,
- MaterialStateProperty<
Color?> ? fillColor, - Color? focusColor,
- FocusNode? focusNode,
- dynamic groupValue,
- Color? hoverColor,
- String? id,
- String? label,
- MaterialTapTargetSize? materialTapTargetSize,
- MouseCursor? mouseCursor,
- ValueChanged? onChanged,
- ValueChanged? onSaved,
- MaterialStateProperty<
Color?> ? overlayColor, - double? splashRadius,
- required bool toggleable,
- Validator? validator,
- dynamic value,
- VisualDensity? visualDensity,
Implementation
JsonRadioBuilder({
this.activeColor,
required this.autofocus,
this.autovalidateMode,
required this.enabled,
this.fillColor,
this.focusColor,
this.focusNode,
this.groupValue,
this.hoverColor,
this.id,
this.label,
this.materialTapTargetSize,
this.mouseCursor,
this.onChanged,
this.onSaved,
this.overlayColor,
this.splashRadius,
required this.toggleable,
this.validator,
this.value,
this.visualDensity,
}) : assert(id?.isNotEmpty == true),
super(numSupportedChildren: kNumSupportedChildren);