AsyncPartitionId constructor
AsyncPartitionId({
- UUID? id,
- AsyncOperationId? operationId,
Implementation
factory AsyncPartitionId({
$0.UUID? id,
AsyncOperationId? operationId,
}) {
final result = create();
if (id != null) result.id = id;
if (operationId != null) result.operationId = operationId;
return result;
}