IDP constructor
IDP({
- String? id,
- ObjectDetails? details,
- IDPState? state,
- String? name,
- IDPStylingType? stylingType,
- IDPOwnerType? owner,
- OIDCConfig? oidcConfig,
- bool? autoRegister,
- 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;
}