IDP constructor

IDP({
  1. String? id,
  2. ObjectDetails? details,
  3. IDPState? state,
  4. String? name,
  5. IDPStylingType? stylingType,
  6. IDPOwnerType? owner,
  7. OIDCConfig? oidcConfig,
  8. bool? autoRegister,
  9. JWTConfig? jwtConfig,
})

Implementation

factory IDP({
  $core.String? id,
  $0.ObjectDetails? details,
  IDPState? state,
  $core.String? name,
  IDPStylingType? stylingType,
  IDPOwnerType? owner,
  OIDCConfig? oidcConfig,
  $core.bool? autoRegister,
  JWTConfig? jwtConfig,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (details != null) result.details = details;
  if (state != null) result.state = state;
  if (name != null) result.name = name;
  if (stylingType != null) result.stylingType = stylingType;
  if (owner != null) result.owner = owner;
  if (oidcConfig != null) result.oidcConfig = oidcConfig;
  if (autoRegister != null) result.autoRegister = autoRegister;
  if (jwtConfig != null) result.jwtConfig = jwtConfig;
  return result;
}