ALPasswordField constructor

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

Implementation

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