FlutterFormInputBool constructor
const
FlutterFormInputBool({ - Key? key,
- Widget? label,
- dynamic onSaved(
- bool?
)?,
- String? validator(
- bool?
)?,
- dynamic onChanged(
- bool?
)?,
- FocusNode? focusNode,
- bool? initialValue = false,
- BoolWidgetType widgetType = BoolWidgetType.switchWidget,
- Widget? leftWidget,
- Widget? rightWidget,
})
Implementation
const FlutterFormInputBool({
super.key,
this.label,
this.onSaved,
this.validator,
this.onChanged,
this.focusNode,
this.initialValue = false,
this.widgetType = BoolWidgetType.switchWidget,
this.leftWidget,
this.rightWidget,
});