includeList static method

CloudStorageEntryIncludeList includeList({
  1. WhereExpressionBuilder<CloudStorageEntryTable>? where,
  2. int? limit,
  3. int? offset,
  4. OrderByBuilder<CloudStorageEntryTable>? orderBy,
  5. @Deprecated('Use desc() on the orderBy column instead.') bool orderDescending = false,
  6. OrderByListBuilder<CloudStorageEntryTable>? orderByList,
  7. CloudStorageEntryInclude? include,
})

Implementation

static CloudStorageEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<CloudStorageEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<CloudStorageEntryTable>? orderBy,
  @Deprecated('Use desc() on the orderBy column instead.')
  bool orderDescending = false,
  _i1.OrderByListBuilder<CloudStorageEntryTable>? orderByList,
  CloudStorageEntryInclude? include,
}) {
  return CloudStorageEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(CloudStorageEntry.t),
    orderDescending: // ignore: deprecated_member_use_from_same_package
        orderDescending,
    orderByList: orderByList?.call(CloudStorageEntry.t),
    include: include,
  );
}