ZeroDatePickerDocked constructor

const ZeroDatePickerDocked({
  1. Key? key,
  2. InputDecorationType inputDecorationType = InputDecorationType.outline,
  3. required DateTime initialDate,
  4. required DateTime firstDate,
  5. required DateTime lastDate,
  6. required ValueChanged<DateTime> onDateChanged,
  7. String? labelText,
  8. String? hintText,
  9. String? helperText,
  10. String? errorText,
  11. String? cancelText,
  12. String? confirmText,
  13. Icon? suffixIcon,
  14. ZeroDatePickerStyle? style,
})

Implementation

const ZeroDatePickerDocked({
  Key? key,
  this.inputDecorationType = InputDecorationType.outline,
  required this.initialDate,
  required this.firstDate,
  required this.lastDate,
  required this.onDateChanged,
  this.labelText,
  this.hintText,
  this.helperText,
  this.errorText,
  this.cancelText,
  this.confirmText,
  this.suffixIcon,
  this.style,
}) : super(key: key);