ALTextField constructor
const
ALTextField({
- Key? key,
- required TextEditingController controller,
- required String hintText,
- bool isMandatory = false,
- String? isEmptyText,
- int? maxCharLength,
- 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);