UpsertPointsInternal constructor
UpsertPointsInternal({
- UpsertPoints? upsertPoints,
- int? shardId,
- ClockTag? clockTag,
Implementation
factory UpsertPointsInternal({
$4.UpsertPoints? upsertPoints,
$core.int? shardId,
ClockTag? clockTag,
}) {
final $result = create();
if (upsertPoints != null) {
$result.upsertPoints = upsertPoints;
}
if (shardId != null) {
$result.shardId = shardId;
}
if (clockTag != null) {
$result.clockTag = clockTag;
}
return $result;
}