FirebaseAuthError.invalidPassword constructor

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

The provided value for the password user property is invalid. It must be a string with at least six characters.

Implementation

FirebaseAuthError.invalidPassword([String? message])
    : this(
          'invalid-password',
          message ??
              'The password must be a string with at least 6 characters.');