EmailField constructor

const EmailField({
  1. Key? key,
  2. String? initialValue,
  3. FieldValidator<String>? validator,
  4. bool? enabled,
  5. ValueChanged<String>? onFieldSubmitted,
  6. FocusNode? focusNode,
  7. TextEditingController? controller,
  8. bool autofocus = false,
  9. required String labelText,
  10. required void onChanged(
    1. String?
    ),
})

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,
});