SortedSetFetchRequest___ByScore constructor

SortedSetFetchRequest___ByScore({
  1. Unbounded_? unboundedMin,
  2. SortedSetFetchRequest___ByScore__Score? minScore,
  3. Unbounded_? unboundedMax,
  4. SortedSetFetchRequest___ByScore__Score? maxScore,
  5. int? offset,
  6. int? count,
})

Implementation

factory SortedSetFetchRequest___ByScore({
  Unbounded_? unboundedMin,
  SortedSetFetchRequest___ByScore__Score? minScore,
  Unbounded_? unboundedMax,
  SortedSetFetchRequest___ByScore__Score? maxScore,
  $core.int? offset,
  $core.int? count,
}) {
  final $result = create();
  if (unboundedMin != null) {
    $result.unboundedMin = unboundedMin;
  }
  if (minScore != null) {
    $result.minScore = minScore;
  }
  if (unboundedMax != null) {
    $result.unboundedMax = unboundedMax;
  }
  if (maxScore != null) {
    $result.maxScore = maxScore;
  }
  if (offset != null) {
    $result.offset = offset;
  }
  if (count != null) {
    $result.count = count;
  }
  return $result;
}