FlutterFormInputPlainTextController constructor

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

Creates a FlutterFormInputPlainTextController.

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

Implementation

FlutterFormInputPlainTextController({
  required this.id,
  this.mandatory = false,
  this.value,
  this.checkPageTitle,
  this.checkPageDescription,
  this.onChanged,
  this.onSubmit,
});