OAuthToken constructor

OAuthToken(
  1. String accessToken,
  2. String refreshToken,
  3. String tokenType,
  4. int expiresIn,
  5. String scope,
)

Constructor

Implementation

OAuthToken(this.accessToken, this.refreshToken, this.tokenType,
    this.expiresIn, this.scope);