includeList static method

Implementation

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