SAMLAuthProvider constructor

SAMLAuthProvider(
  1. String providerId
)

Implementation

SAMLAuthProvider(String providerId) : super(providerId) {
  // SAML provider IDs must be prefixed with the SAML_PREFIX.
  if (!isSaml(providerId)) {
    throw FirebaseAuthException.argumentError(
        'SAML provider IDs must be prefixed with "$samlPrefix"');
  }
}