OAuthAccessTokenInner constructor
OAuthAccessTokenInner({
- required OAuthAccessTokenInnerObjectEnum object,
- required String externalAccountId,
- required String providerUserId,
- required String token,
- required int? expiresAt,
- required String provider,
- Map<
String, Object> publicMetadata = const {}, - required String? label,
- List<
String> scopes = const [], - String? idToken,
- 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,
});