FirebaseAuthError.invalidEmail constructor

FirebaseAuthError.invalidEmail([
  1. String? message
])

The provided value for the email user property is invalid. It must be a string email address.

Implementation

FirebaseAuthError.invalidEmail([String? message])
    : this('invalid-email',
          message ?? 'The email address is improperly formatted.');