CustomTextField constructor

const CustomTextField({
  1. required String labelText,
  2. bool isPassword = false,
  3. TextEditingController? controller,
  4. Key? key,
})

Implementation

const CustomTextField({
  required this.labelText,
  this.isPassword = false,
  this.controller,
  Key? key,
}) : super(key: key);