OauthToken constructor

const OauthToken({
  1. required String accessToken,
  2. required int expiresIn,
  3. required String refreshToken,
  4. required String scope,
  5. required String tokenType,
  6. required DateTime created,
  7. String? provider,
})

Creates a new token

Implementation

const OauthToken({
  required this.accessToken,
  required this.expiresIn,
  required this.refreshToken,
  required this.scope,
  required this.tokenType,
  required this.created,
  this.provider,
});