UpDateTimePicker constructor

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

Implementation

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