ApzDatePickerField constructor

const ApzDatePickerField({
  1. Key? key,
  2. required String label,
  3. required dynamic onDateSelected(
    1. DateTime
    ),
  4. DateTime? selectedDate,
  5. bool blockFuture = false,
  6. bool blockPast = false,
  7. bool isMandatory = false,
})

Implementation

const ApzDatePickerField({
  super.key,
  required this.label,
  required this.onDateSelected,
  this.selectedDate,
  this.blockFuture = false,
  this.blockPast = false,
  this.isMandatory = false
});