OauthClient constructor

OauthClient({
  1. List<String>? allowedGrantTypes,
  2. List<String>? allowedRedirectUris,
  3. List<String>? allowedScopes,
  4. String? clientId,
  5. String? clientType,
  6. String? description,
  7. bool? disabled,
  8. String? displayName,
  9. String? expireTime,
  10. String? name,
  11. String? state,
})

Implementation

OauthClient({
  this.allowedGrantTypes,
  this.allowedRedirectUris,
  this.allowedScopes,
  this.clientId,
  this.clientType,
  this.description,
  this.disabled,
  this.displayName,
  this.expireTime,
  this.name,
  this.state,
});