includeList static method

Implementation

static CloudStorageEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<CloudStorageEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<CloudStorageEntryTable>? orderBy,
  bool orderDescending = false,
  _i1.OrderByListBuilder<CloudStorageEntryTable>? orderByList,
  CloudStorageEntryInclude? include,
}) {
  return CloudStorageEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(CloudStorageEntry.t),
    orderDescending: orderDescending,
    orderByList: orderByList?.call(CloudStorageEntry.t),
    include: include,
  );
}