UpDatePicker constructor

const UpDatePicker({
  1. Key? key,
  2. UpInputType type = UpInputType.outline,
  3. required TextEditingController controller,
  4. required String label,
  5. UpValidation? validation,
  6. Function? onChange,
  7. UpStyle? style,
  8. UpColorType? colorType,
})

Implementation

const UpDatePicker({
  super.key,
  this.type = UpInputType.outline,
  required this.controller,
  required this.label,
  this.validation,
  this.onChange,
  this.style,
  this.colorType,
});