EmailField constructor
const
EmailField({
- Key? key,
- String? initialValue,
- FieldValidator<
String> ? validator, - bool? enabled,
- ValueChanged<
String> ? onFieldSubmitted, - FocusNode? focusNode,
- TextEditingController? controller,
- bool autofocus = false,
- required String labelText,
- required void onChanged(),
Implementation
const EmailField({
super.key,
this.initialValue,
this.validator,
this.enabled,
this.onFieldSubmitted,
this.focusNode,
this.controller,
this.autofocus = false,
required this.labelText,
required this.onChanged,
});