FlutterFormInputDateTimeController constructor

FlutterFormInputDateTimeController(
  1. {required String? id,
  2. required FlutterFormDateTimeType dateTimeType,
  3. required DateFormat dateFormat,
  4. bool mandatory = true,
  5. String? value,
  6. String checkPageTitle(
    1. String? value
    )?,
  7. String checkPageDescription(
    1. String? value
    )?,
  8. DateTime? initialDate,
  9. DateTimeRange? initialDateTimeRange,
  10. void onChanged(
    1. String? value
    )?}
)

Creates a FlutterFormInputDateTimeController.

The id, dateTimeType, and dateFormat are required parameters. The mandatory parameter specifies whether the input is mandatory. The value, initialDate, initialDateTimeRange, checkPageTitle, checkPageDescription, and onChanged parameters are optional.

Implementation

FlutterFormInputDateTimeController({
  required this.id,
  required this.dateTimeType,
  required this.dateFormat,
  this.mandatory = true,
  this.value,
  this.checkPageTitle,
  this.checkPageDescription,
  this.initialDate,
  this.initialDateTimeRange,
  this.onChanged,
}) {
  if (value != null) {
    value = dateFormat.format(DateTime.parse(value!));
  }
}