DateTimeFormField constructor

const DateTimeFormField({
  1. Key? key,
  2. void onSaved(
    1. DateTime?
    )?,
  3. required DateTime firstDate,
  4. DateTime? initialDate,
  5. required DateTime lastDate,
  6. String? validator(
    1. DateTime?
    )?,
  7. String? labelText,
  8. InputBorderType? borderType,
})

Implementation

const DateTimeFormField({
  Key? key,
  this.onSaved,
  required this.firstDate,
  this.initialDate,
  required this.lastDate,
  this.validator,
  this.labelText,
  this.borderType,
}) : super(key: key);