DatePickerControl constructor

const DatePickerControl({
  1. Key? key,
  2. FormValueChanged<DateTime?>? onChange,
  3. DateTime? initialValue,
  4. String? placeholder,
  5. bool? adaptive,
  6. required Formatter<DateTime> formatter,
  7. bool? autofocus = false,
  8. String? label,
  9. bool? enabled = true,
  10. FocusNode? focusNode,
  11. String? initialSelection,
})

Implementation

const DatePickerControl({
  Key? key,
  this.onChange,
  this.initialValue,
  this.placeholder,
  this.adaptive,
  required this.formatter,
  this.autofocus = false,
  this.label,
  this.enabled = true,
  this.focusNode,
  this.initialSelection,
}) : super(key: key);