OidcTokenResponse constructor

OidcTokenResponse({
  1. String? accessToken,
  2. bool? authorizationPending,
  3. String? cNonce,
  4. int? cNonceExpiresIn,
  5. int? interval,
  6. String? refreshToken,
})

Implementation

OidcTokenResponse(
    {this.accessToken,
    this.authorizationPending,
    this.cNonce,
    this.cNonceExpiresIn,
    this.interval,
    this.refreshToken});