Suppose I need to implement two interfaces in my class, and these two interfaces contain declaration...
s
Suppose I need to implement two interfaces in my class, and these two interfaces contain declarations of equally named properties, but of different types. E.g. once there is
val id: Int
and in the other interface there is
val id: String
. How would I resolve that in my implementation?
k
👍🏻 1