includeList static method

Implementation

static CloudStorageDirectUploadEntryIncludeList includeList({
  _is.WhereExpressionBuilder<CloudStorageDirectUploadEntryTable>? where,
  int? limit,
  int? offset,
  _is.OrderByBuilder<CloudStorageDirectUploadEntryTable>? orderBy,
  _is.OrderByListBuilder<CloudStorageDirectUploadEntryTable>? orderByList,
  CloudStorageDirectUploadEntryInclude? include,
}) {
  return CloudStorageDirectUploadEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(CloudStorageDirectUploadEntry.t),
    orderByList: orderByList?.call(CloudStorageDirectUploadEntry.t),
    include: include,
  );
}