CustomTextFormField constructor
const
CustomTextFormField({
- Key? key,
- required String? validate()?,
- required String hintText,
- required String labelText,
- required TextInputType textInputType,
- TextEditingController? controller,
- int? maxLines,
- int maxLength = 100,
Implementation
const CustomTextFormField({
Key? key,
required this.validate,
required this.hintText,
required this.labelText,
required this.textInputType,
this.controller,
this.maxLines,
this.maxLength = 100,
}) : super(key: key);