Não estou conseguindo utilizar o método:
public static List converter(List topicos) { return topicos.stream().map(TopicoDto::new).collect(Collectors.toList()); }
A IDE exibe este erro:
- The method map(Function<? super Topico,? extends R>) in the type Stream is not applicable for the arguments (TopicoDto::new)
- The type TopicoDto does not define TopicoDto(Topico) that is applicable here.
Estou utilizando a jdk "1.8.0_241"