includeList static method

Implementation

static CloudStorageDirectDownloadEntryIncludeList includeList({
  _is.WhereExpressionBuilder<CloudStorageDirectDownloadEntryTable>? where,
  int? limit,
  int? offset,
  _is.OrderByBuilder<CloudStorageDirectDownloadEntryTable>? orderBy,
  _is.OrderByListBuilder<CloudStorageDirectDownloadEntryTable>? orderByList,
  CloudStorageDirectDownloadEntryInclude? include,
}) {
  return CloudStorageDirectDownloadEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(CloudStorageDirectDownloadEntry.t),
    orderByList: orderByList?.call(CloudStorageDirectDownloadEntry.t),
    include: include,
  );
}