NxSelectDate constructor

const NxSelectDate({
  1. Key? key,
  2. Widget? icon,
  3. bool useFilter = false,
  4. String text = "",
  5. DateTime? initialDate,
  6. DateTime? lastDate,
  7. bool isLoading = false,
  8. String label = "",
  9. String? textError,
  10. ValueChanged<DateTime>? onSelected,
})

Implementation

const NxSelectDate({
  Key? key,
  this.icon,
  this.useFilter = false,
  this.text = "",
  this.initialDate,
  this.lastDate,
  this.isLoading = false,
  this.label = "",
  this.textError,
  this.onSelected
}) : super(key: key);