FormDatetimeItem constructor

FormDatetimeItem({
  1. FormItemStyle? formItemStyle,
  2. required String label,
  3. bool withTime = false,
  4. bool onlyTime = false,
  5. String dateFormat = "MM/dd/yyyy",
  6. String timeFormat = "HH:mm",
  7. List<FormValidator>? validators,
  8. 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});