AccessTokenResponse constructor

AccessTokenResponse(
  1. String accessToken,
  2. int expiresIn,
  3. String? refreshToken,
  4. int? refreshTokenExpiresIn,
  5. String? scopes,
  6. String tokenType,
)

Implementation

AccessTokenResponse(this.accessToken, this.expiresIn, this.refreshToken,
    this.refreshTokenExpiresIn, this.scopes, this.tokenType);