includeList static method

Implementation

static QueryLogEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<QueryLogEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<QueryLogEntryTable>? orderBy,
  _i1.OrderByListBuilder<QueryLogEntryTable>? orderByList,
  QueryLogEntryInclude? include,
}) {
  return QueryLogEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(QueryLogEntry.t),
    orderByList: orderByList?.call(QueryLogEntry.t),
    include: include,
  );
}