CustomLabelInput constructor

const CustomLabelInput({
  1. Key? key,
  2. required String label,
  3. required TextEditingController controller,
  4. String? hintText,
})

Implementation

const CustomLabelInput({
  super.key,
  required this.label,
  required this.controller,
  this.hintText,
});