NiceDatePicker constructor

const NiceDatePicker({
  1. Key? key,
  2. DateTime? value,
  3. String? label,
  4. String? hint,
  5. String? errorText,
  6. bool enabled = true,
  7. DateTime? firstDate,
  8. DateTime? lastDate,
  9. String dateFormat(
    1. DateTime
    )?,
  10. ValueChanged<DateTime?>? onChanged,
})

Implementation

const NiceDatePicker({
  super.key,
  this.value,
  this.label,
  this.hint,
  this.errorText,
  this.enabled = true,
  this.firstDate,
  this.lastDate,
  this.dateFormat,
  this.onChanged,
});