UpsertPointsInternal constructor

UpsertPointsInternal({
  1. UpsertPoints? upsertPoints,
  2. int? shardId,
  3. 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;
}