UpdateBatchPoints constructor
UpdateBatchPoints({
- String? collectionName,
- bool? wait,
- Iterable<
PointsUpdateOperation> ? operations, - WriteOrdering? ordering,
Implementation
factory UpdateBatchPoints({
$core.String? collectionName,
$core.bool? wait,
$core.Iterable<PointsUpdateOperation>? operations,
WriteOrdering? ordering,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (wait != null) {
$result.wait = wait;
}
if (operations != null) {
$result.operations.addAll(operations);
}
if (ordering != null) {
$result.ordering = ordering;
}
return $result;
}