DatepickerWidget constructor

const DatepickerWidget({
  1. Key? key,
  2. String? fechaInicial,
  3. String? primerFecha,
  4. String? ultimaFecha,
  5. required ValueChanged<String> onFechaSeleccionada,
  6. bool? soloAnio,
  7. bool? almacenaHora,
  8. Color? colorIcono,
})

Implementation

const DatepickerWidget({
  super.key,
  this.fechaInicial,
  this.primerFecha,
  this.ultimaFecha,
  required this.onFechaSeleccionada,
  this.soloAnio,
  this.almacenaHora,
  this.colorIcono,
});