CreateOIDCApplicationResponse constructor

CreateOIDCApplicationResponse({
  1. String? clientId,
  2. String? clientSecret,
  3. bool? nonCompliant,
  4. Iterable<OIDCLocalizedMessage>? complianceProblems,
})

Implementation

factory CreateOIDCApplicationResponse({
  $core.String? clientId,
  $core.String? clientSecret,
  $core.bool? nonCompliant,
  $core.Iterable<$4.OIDCLocalizedMessage>? complianceProblems,
}) {
  final result = create();
  if (clientId != null) result.clientId = clientId;
  if (clientSecret != null) result.clientSecret = clientSecret;
  if (nonCompliant != null) result.nonCompliant = nonCompliant;
  if (complianceProblems != null)
    result.complianceProblems.addAll(complianceProblems);
  return result;
}