includeList static method

LogEntryIncludeList includeList({
  1. WhereExpressionBuilder<LogEntryTable>? where,
  2. int? limit,
  3. int? offset,
  4. OrderByBuilder<LogEntryTable>? orderBy,
  5. bool orderDescending = false,
  6. OrderByListBuilder<LogEntryTable>? orderByList,
  7. LogEntryInclude? include,
})

Implementation

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