GenerateAccessTokenResponse constructor

GenerateAccessTokenResponse({
  1. String? accessToken,
  2. int? expiresIn,
  3. String? scope,
  4. String? tokenType,
})

Implementation

GenerateAccessTokenResponse({
  this.accessToken,
  this.expiresIn,
  this.scope,
  this.tokenType,
});