Reputation: 554
i have to declare a class parameter of type nullable list(contaning String) with list default value= null
data class Riga(
var frase1 : List?<String>= null
)
this is raising:
Property getter or setter expected
One type argument expected for interface List<out E>
Upvotes: 2
Views: 848