OAuthToken constructor

OAuthToken(
  1. String accessToken,
  2. String refreshToken,
  3. String tokenType,
  4. DateTime expiresAt,
  5. List<String> scope,
  6. String idToken,
)

Constructor

Implementation

OAuthToken(
  this.accessToken,
  this.refreshToken,
  this.tokenType,
  this.expiresAt,
  this.scope,
  this.idToken,
);