FieldSwitch constructor
const
FieldSwitch({
- String? label,
- String? hint,
- bool? enabled,
- Map<
String, dynamic> ? inputDecoration, - String? type,
- dynamic initialValue,
- double? sequence,
- String? icon,
- int? iconSize,
- String? iconTooltip,
- String? iconTooltipPosition,
- String? iconColor,
- String? colorActive,
- String? colorHover,
- String? colorDisabled,
- String? colorFocus,
- String? colorError,
Implementation
const FieldSwitch({
this.label,
this.hint,
this.enabled,
this.inputDecoration,
this.type,
this.initialValue,
this.sequence,
this.icon, // 'check_box_outline_blank', 'check_box', 'indeterminate_check_box', 'radio_button_unchecked', 'radio_button_checked', 'indeterminate_radio_button'
this.iconSize,
this.iconTooltip,
this.iconTooltipPosition,
this.iconColor,
this.colorActive,
this.colorHover,
this.colorDisabled,
this.colorFocus,
this.colorError,
});