AsyncOperationResult constructor
AsyncOperationResult({})
Implementation
factory AsyncOperationResult({
$core.int? partitionsSucceeded,
$core.int? partitionsFailed,
$core.int? itemsSucceeded,
$core.int? itemsFailed,
$core.int? partitionsPending,
$core.int? itemsPending,
}) {
final result = create();
if (partitionsSucceeded != null)
result.partitionsSucceeded = partitionsSucceeded;
if (partitionsFailed != null) result.partitionsFailed = partitionsFailed;
if (itemsSucceeded != null) result.itemsSucceeded = itemsSucceeded;
if (itemsFailed != null) result.itemsFailed = itemsFailed;
if (partitionsPending != null) result.partitionsPending = partitionsPending;
if (itemsPending != null) result.itemsPending = itemsPending;
return result;
}