NiceDateTimePicker constructor

const NiceDateTimePicker({
  1. Key? key,
  2. DateTime? value,
  3. ValueChanged<DateTime>? onChanged,
  4. String? label,
  5. DateTime? firstDate,
  6. DateTime? lastDate,
  7. bool enabled = true,
})

Implementation

const NiceDateTimePicker({
  super.key,
  this.value,
  this.onChanged,
  this.label,
  this.firstDate,
  this.lastDate,
  this.enabled = true,
});