includeList static method

Implementation

static SessionLogEntryIncludeList includeList({
  _is.WhereExpressionBuilder<SessionLogEntryTable>? where,
  int? limit,
  int? offset,
  _is.OrderByBuilder<SessionLogEntryTable>? orderBy,
  _is.OrderByListBuilder<SessionLogEntryTable>? orderByList,
  SessionLogEntryInclude? include,
}) {
  return SessionLogEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(SessionLogEntry.t),
    orderByList: orderByList?.call(SessionLogEntry.t),
    include: include,
  );
}