includeList static method

ServerHealthConnectionInfoIncludeList includeList({
  1. WhereExpressionBuilder<ServerHealthConnectionInfoTable>? where,
  2. int? limit,
  3. int? offset,
  4. OrderByBuilder<ServerHealthConnectionInfoTable>? orderBy,
  5. @Deprecated('Use desc() on the orderBy column instead.') bool orderDescending = false,
  6. OrderByListBuilder<ServerHealthConnectionInfoTable>? orderByList,
  7. ServerHealthConnectionInfoInclude? include,
})

Implementation

static ServerHealthConnectionInfoIncludeList includeList({
  _i1.WhereExpressionBuilder<ServerHealthConnectionInfoTable>? where,
  int? limit,
  int? offset,
  _i1.OrderByBuilder<ServerHealthConnectionInfoTable>? orderBy,
  @Deprecated('Use desc() on the orderBy column instead.')
  bool orderDescending = false,
  _i1.OrderByListBuilder<ServerHealthConnectionInfoTable>? orderByList,
  ServerHealthConnectionInfoInclude? include,
}) {
  return ServerHealthConnectionInfoIncludeList._(
    where: where,
    limit: limit,
    offset: offset,
    orderBy: orderBy?.call(ServerHealthConnectionInfo.t),
    orderDescending: // ignore: deprecated_member_use_from_same_package
        orderDescending,
    orderByList: orderByList?.call(ServerHealthConnectionInfo.t),
    include: include,
  );
}