IDP constructor
IDP({})
Implementation
factory IDP({
$core.String? id,
$0.Details? details,
IDPState? state,
$core.String? name,
IDPType? type,
IDPConfig? config,
}) {
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 (type != null) result.type = type;
if (config != null) result.config = config;
return result;
}