CustomTextField constructor

CustomTextField({
  1. Key? key,
  2. required String textType,
  3. required String title,
  4. required TextEditingController textController,
  5. required String hintText,
  6. required String labelText,
  7. required bool enableText,
})

Implementation

CustomTextField({super.key,
  required this.textType,
  required this.title,
  required this.textController,
  required this.hintText,
  required this.labelText,
  required this.enableText,
}) ;