includeList static method
LogEntryIncludeList
includeList({
- WhereExpressionBuilder<
LogEntryTable> ? where, - int? limit,
- int? offset,
- OrderByBuilder<
LogEntryTable> ? orderBy, - bool orderDescending = false,
- OrderByListBuilder<
LogEntryTable> ? orderByList, - 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,
);
}