TokenResponse constructor

TokenResponse(
  1. String? accessToken,
  2. String? refreshToken,
  3. DateTime? accessTokenExpirationDateTime,
  4. String? idToken,
  5. String? tokenType,
  6. List<String>? scopes,
  7. Map<String, dynamic>? tokenAdditionalParameters
)

Implementation

TokenResponse(
  this.accessToken,
  this.refreshToken,
  this.accessTokenExpirationDateTime,
  this.idToken,
  this.tokenType,
  this.scopes,
  this.tokenAdditionalParameters,
);