AuthorizationResponse constructor

AuthorizationResponse(
  1. String authorizationId,
  2. String authorizationCode,
  3. List<String> scopes,
  4. String codeId,
  5. App app,
  6. String createdAt,
  7. String accessedAt,
)

Implementation

AuthorizationResponse(
  this.authorizationId,
  this.authorizationCode,
  this.scopes,
  this.codeId,
  this.app,
  this.createdAt,
  this.accessedAt,
);