FormDatetimeItem constructor
FormDatetimeItem({
- FormItemStyle? formItemStyle,
- required String label,
- bool withTime = false,
- bool onlyTime = false,
- String dateFormat = "MM/dd/yyyy",
- String timeFormat = "HH:mm",
- List<
FormValidator> ? validators, - dynamic value,
Implementation
FormDatetimeItem(
{super.formItemStyle,
required super.label,
this.withTime = false,
this.onlyTime = false,
this.dateFormat = "MM/dd/yyyy",
this.timeFormat = "HH:mm",
super.validators,
super.value});