Aggregate constructor
Aggregate({
- String? id,
- AggregateType? type,
- String? resourceOwner,
Implementation
factory Aggregate({
$core.String? id,
AggregateType? type,
$core.String? resourceOwner,
}) {
final _result = create();
if (id != null) {
_result.id = id;
}
if (type != null) {
_result.type = type;
}
if (resourceOwner != null) {
_result.resourceOwner = resourceOwner;
}
return _result;
}