If I have a generic class, how do I access its con...
# getting-started
a
If I have a generic class, how do I access its constructor without a type? Like in Java we have a class
public class ProxyList<T: BaseModel> {... }
and I can write it's parcelable implementation using
return ProxyList(parcel)
but I can't figure out how to do that in Kotlin. I keep getting "one type argument excepted"