includeList static method

Implementation

static MessageLogEntryIncludeList includeList({
  _i1.WhereExpressionBuilder<MessageLogEntryTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<MessageLogEntryTable>? orderBy,
  _i1.OrderByListBuilder<MessageLogEntryTable>? orderByList,
  MessageLogEntryInclude? include,
}) {
  return MessageLogEntryIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(MessageLogEntry.t),
    orderByList: orderByList?.call(MessageLogEntry.t),
    include: include,
  );
}