ALTextField constructor

const ALTextField({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String hintText,
  4. bool isMandatory = false,
  5. String? isEmptyText,
  6. int? maxCharLength,
  7. TextInputType? keyBoardType,
})

Implementation

const ALTextField({
  Key? key,
  required this.controller,
  required this.hintText,
  this.isMandatory = false,
  this.isEmptyText,
  this.maxCharLength,
  this.keyBoardType,
}) : super(key: key);