OAuthToken constructor

const OAuthToken({
  1. required String accessToken,
  2. String tokenType = 'Bearer',
  3. int? expiresIn,
  4. String? refreshToken,
  5. List<String>? scopes,
  6. required DateTime issuedAt,
  7. Map<String, dynamic>? extra,
})

Implementation

const OAuthToken({
  required this.accessToken,
  this.tokenType = 'Bearer',
  this.expiresIn,
  this.refreshToken,
  this.scopes,
  required this.issuedAt,
  this.extra,
});