TokenResponse constructor

TokenResponse({
  1. String? accessToken,
  2. String? tokenType,
  3. int? expiresIn,
  4. String? refreshToken,
  5. bool? requires2fa,
  6. String? tempToken,
})

Returns a new TokenResponse instance.

Implementation

TokenResponse({
  this.accessToken,
  this.tokenType,
  this.expiresIn,
  this.refreshToken,
  this.requires2fa,
  this.tempToken,
});