includeList static method
CloudStorageDirectDownloadEntryIncludeList
includeList({
- WhereExpressionBuilder<
CloudStorageDirectDownloadEntryTable> ? where, - int? limit,
- int? offset,
- OrderByBuilder<
CloudStorageDirectDownloadEntryTable> ? orderBy, - OrderByListBuilder<
CloudStorageDirectDownloadEntryTable> ? orderByList, - CloudStorageDirectDownloadEntryInclude? include,
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,
);
}