MinDatePicker constructor

const MinDatePicker({
  1. Key? key,
  2. DateTime? value,
  3. required ValueChanged<DateTime> onChanged,
  4. DateTime? initialDate,
  5. DateTime? firstDate,
  6. DateTime? lastDate,
  7. bool disabled = false,
  8. String? placeholder,
  9. String? semanticLabel,
})

Crea un selector de fecha.

Implementation

const MinDatePicker({
  super.key,
  this.value,
  required this.onChanged,
  this.initialDate,
  this.firstDate,
  this.lastDate,
  this.disabled = false,
  this.placeholder,
  this.semanticLabel,
});