OAuthResponse constructor

OAuthResponse(
  1. String? tokenType,
  2. int? expiresIn,
  3. String? refreshToken,
  4. String? accessToken,
  5. String? idToken, {
  6. String? error,
  7. String? errorDescription,
})

Implementation

OAuthResponse(this.tokenType, this.expiresIn, this.refreshToken,
    this.accessToken, this.idToken,
    {this.error, this.errorDescription});