includeList static method

Implementation

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