how would i create objects of an `external`ly defined classes?
d
diesieben07
05/15/2019, 12:48 PM
Should work the same as a normal Kotlin class, just call the constructor:
val myObj = TheExternalClass(...)
t
thana
05/15/2019, 12:56 PM
mmh yes, stupid me. i was too much in ts where you could just cast an object to an interface... which is not a class like i asked for in my question... i know - that's my weired mind ... 😉