OAuthAccessTokenInner constructor

OAuthAccessTokenInner({
  1. required OAuthAccessTokenInnerObjectEnum object,
  2. required String externalAccountId,
  3. required String providerUserId,
  4. required String token,
  5. required int? expiresAt,
  6. required String provider,
  7. Map<String, Object> publicMetadata = const {},
  8. required String? label,
  9. List<String> scopes = const [],
  10. String? idToken,
  11. String? tokenSecret,
})

Returns a new OAuthAccessTokenInner instance.

Implementation

OAuthAccessTokenInner({
  required this.object,
  required this.externalAccountId,
  required this.providerUserId,
  required this.token,
  required this.expiresAt,
  required this.provider,
  this.publicMetadata = const {},
  required this.label,
  this.scopes = const [],
  this.idToken,
  this.tokenSecret,
});