SortedSetFetchRequest___ByIndex constructor
SortedSetFetchRequest___ByIndex({
- Unbounded_? unboundedStart,
- int? inclusiveStartIndex,
- Unbounded_? unboundedEnd,
- 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;
}