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,
  $7.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;
}