For a purpose of using MapStruct (mapping library) I need to annotate the default constructor. As I want to use vals in that class I want to annotate the constructor with all fields. I can of course use @JvmOverloads to get all variations but how could I annotate the one with all fields?
data class ClassName @JvmOverloads @Default constructor(... - does not work