OAuthCredential constructor

  1. @protected
const OAuthCredential(
  1. {required String providerId,
  2. required String signInMethod,
  3. String? accessToken,
  4. String? idToken,
  5. String? secret,
  6. String? rawNonce}
)

Implementation

@protected
const OAuthCredential({
  required String providerId,
  required String signInMethod,
  String? accessToken,
  this.idToken,
  this.secret,
  this.rawNonce,
}) : super(
        providerId: providerId,
        signInMethod: signInMethod,
        accessToken: accessToken,
      );