UpKey constructor

const UpKey({
  1. Key? key,
  2. UpInputType? type,
  3. UpValidation? validation,
  4. required TextEditingController controller,
  5. ValueChanged<String>? valueChanged,
  6. String? lable,
  7. String? hint,
  8. UpColorType? colorType,
  9. UpStyle? style,
})

Implementation

const UpKey({
  Key? key,
  this.type,
  this.validation,
  required this.controller,
  this.valueChanged,
  this.lable,
  this.hint,
  this.colorType,
  this.style,
}) : super(key: key);