includeList static method

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

Implementation

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