FlutterFormInputBool constructor

const FlutterFormInputBool({
  1. Key? key,
  2. Widget? label,
  3. dynamic onSaved(
    1. bool?
    )?,
  4. String? validator(
    1. bool?
    )?,
  5. dynamic onChanged(
    1. bool?
    )?,
  6. FocusNode? focusNode,
  7. bool? initialValue = false,
  8. BoolWidgetType widgetType = BoolWidgetType.switchWidget,
  9. Widget? leftWidget,
  10. 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,
});