DeletePointsInternal constructor

DeletePointsInternal({
  1. DeletePoints? deletePoints,
  2. int? shardId,
  3. ClockTag? clockTag,
})

Implementation

factory DeletePointsInternal({
  $4.DeletePoints? deletePoints,
  $core.int? shardId,
  ClockTag? clockTag,
}) {
  final $result = create();
  if (deletePoints != null) {
    $result.deletePoints = deletePoints;
  }
  if (shardId != null) {
    $result.shardId = shardId;
  }
  if (clockTag != null) {
    $result.clockTag = clockTag;
  }
  return $result;
}