UpKey constructor

const UpKey({
  1. Key? key,
  2. required TextEditingController controller,
  3. ValueChanged<String>? valueChanged,
  4. String? lableText,
  5. String? hintText,
})

Implementation

const UpKey(
    {Key? key,
    required this.controller,
    this.valueChanged,
    this.lableText,
    this.hintText})
    : super(key: key);