CreateTokenResponse constructor

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

Implementation

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