UpsertItemBatchResponse_ constructor

UpsertItemBatchResponse_({
  1. Iterable<int>? errorIndices,
})

Implementation

factory UpsertItemBatchResponse_({
  $core.Iterable<$core.int>? errorIndices,
}) {
  final $result = create();
  if (errorIndices != null) {
    $result.errorIndices.addAll(errorIndices);
  }
  return $result;
}