FlutterFormInputSwitchController constructor

FlutterFormInputSwitchController(
  1. {required String? id,
  2. bool mandatory = true,
  3. bool? value,
  4. String checkPageTitle(
    1. bool? value
    )?,
  5. String checkPageDescription(
    1. bool? value
    )?,
  6. void onChanged(
    1. bool? value
    )?}
)

Creates a FlutterFormInputSwitchController.

The id parameter specifies the unique identifier for the controller. The mandatory parameter specifies whether the input is mandatory. The value, checkPageTitle, checkPageDescription, and onChanged parameters are optional.

Implementation

FlutterFormInputSwitchController({
  required this.id,
  this.mandatory = true,
  this.value,
  this.checkPageTitle,
  this.checkPageDescription,
  this.onChanged,
});