AsyncPartitionId constructor

AsyncPartitionId({
  1. UUID? id,
  2. 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;
}