includeList static method

Implementation

static SessionLogEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<SessionLogEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<SessionLogEntryTable>? orderBy,
  _i1.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,
  );
}