OAuthTokenResponse constructor

OAuthTokenResponse({
  1. String? accessToken,
  2. String? tokenType,
  3. int? expiresIn,
  4. String? refreshToken,
  5. String? scope,
  6. String? idToken,
})

Returns a new OAuthTokenResponse instance.

Implementation

OAuthTokenResponse({
  this.accessToken,
  this.tokenType,
  this.expiresIn,
  this.refreshToken,
  this.scope,
  this.idToken,
});