SortedSetFetchRequest___ByIndex constructor

SortedSetFetchRequest___ByIndex({
  1. Unbounded_? unboundedStart,
  2. int? inclusiveStartIndex,
  3. Unbounded_? unboundedEnd,
  4. int? exclusiveEndIndex,
})

Implementation

factory SortedSetFetchRequest___ByIndex({
  Unbounded_? unboundedStart,
  $core.int? inclusiveStartIndex,
  Unbounded_? unboundedEnd,
  $core.int? exclusiveEndIndex,
}) {
  final $result = create();
  if (unboundedStart != null) {
    $result.unboundedStart = unboundedStart;
  }
  if (inclusiveStartIndex != null) {
    $result.inclusiveStartIndex = inclusiveStartIndex;
  }
  if (unboundedEnd != null) {
    $result.unboundedEnd = unboundedEnd;
  }
  if (exclusiveEndIndex != null) {
    $result.exclusiveEndIndex = exclusiveEndIndex;
  }
  return $result;
}