OAuthTokens constructor

const OAuthTokens({
  1. required String accessToken,
  2. String? refreshToken,
  3. int? expiresAt,
  4. List<String> scopes = const ['user:inference'],
  5. String? subscriptionType,
  6. String? rateLimitTier,
})

Implementation

const OAuthTokens({
  required this.accessToken,
  this.refreshToken,
  this.expiresAt,
  this.scopes = const ['user:inference'],
  this.subscriptionType,
  this.rateLimitTier,
});