ListFetchRequest_ constructor

ListFetchRequest_({
  1. List<int>? listName,
  2. Unbounded_? unboundedStart,
  3. int? inclusiveStart,
  4. Unbounded_? unboundedEnd,
  5. int? exclusiveEnd,
})

Implementation

factory ListFetchRequest_({
  $core.List<$core.int>? listName,
  Unbounded_? unboundedStart,
  $core.int? inclusiveStart,
  Unbounded_? unboundedEnd,
  $core.int? exclusiveEnd,
}) {
  final $result = create();
  if (listName != null) {
    $result.listName = listName;
  }
  if (unboundedStart != null) {
    $result.unboundedStart = unboundedStart;
  }
  if (inclusiveStart != null) {
    $result.inclusiveStart = inclusiveStart;
  }
  if (unboundedEnd != null) {
    $result.unboundedEnd = unboundedEnd;
  }
  if (exclusiveEnd != null) {
    $result.exclusiveEnd = exclusiveEnd;
  }
  return $result;
}