Provider constructor
Provider({
- String? id,
- ObjectDetails? details,
- IDPState? state,
- String? name,
- IDPOwnerType? owner,
- ProviderType? type,
- ProviderConfig? config,
Implementation
factory Provider({
$core.String? id,
$0.ObjectDetails? details,
IDPState? state,
$core.String? name,
IDPOwnerType? owner,
ProviderType? type,
ProviderConfig? 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 (owner != null) result.owner = owner;
if (type != null) result.type = type;
if (config != null) result.config = config;
return result;
}