FlutterFormInputDateTimeController constructor
FlutterFormInputDateTimeController({ - required String? id,
- required FlutterFormDateTimeType dateTimeType,
- required DateFormat dateFormat,
- bool mandatory = true,
- String? value,
- String checkPageTitle(
- String? value
)?,
- String checkPageDescription(
- String? value
)?,
- DateTime? initialDate,
- DateTimeRange? initialDateTimeRange,
- void onChanged(
- 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!));
}
}