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
    )?,
})

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!));
  }
}