SortedSetLengthByScoreRequest_ constructor

SortedSetLengthByScoreRequest_({
  1. List<int>? setName,
  2. double? inclusiveMin,
  3. double? exclusiveMin,
  4. Unbounded_? unboundedMin,
  5. double? inclusiveMax,
  6. double? exclusiveMax,
  7. Unbounded_? unboundedMax,
})

Implementation

factory SortedSetLengthByScoreRequest_({
  $core.List<$core.int>? setName,
  $core.double? inclusiveMin,
  $core.double? exclusiveMin,
  Unbounded_? unboundedMin,
  $core.double? inclusiveMax,
  $core.double? exclusiveMax,
  Unbounded_? unboundedMax,
}) {
  final $result = create();
  if (setName != null) {
    $result.setName = setName;
  }
  if (inclusiveMin != null) {
    $result.inclusiveMin = inclusiveMin;
  }
  if (exclusiveMin != null) {
    $result.exclusiveMin = exclusiveMin;
  }
  if (unboundedMin != null) {
    $result.unboundedMin = unboundedMin;
  }
  if (inclusiveMax != null) {
    $result.inclusiveMax = inclusiveMax;
  }
  if (exclusiveMax != null) {
    $result.exclusiveMax = exclusiveMax;
  }
  if (unboundedMax != null) {
    $result.unboundedMax = unboundedMax;
  }
  return $result;
}