RegisterClientResponse constructor

RegisterClientResponse({
  1. String? authorizationEndpoint,
  2. String? clientId,
  3. int? clientIdIssuedAt,
  4. String? clientSecret,
  5. int? clientSecretExpiresAt,
  6. String? tokenEndpoint,
})

Implementation

RegisterClientResponse({
  this.authorizationEndpoint,
  this.clientId,
  this.clientIdIssuedAt,
  this.clientSecret,
  this.clientSecretExpiresAt,
  this.tokenEndpoint,
});