CustomTextField constructor

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

Implementation

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