I'm a beginner in Kotlin and I'm actually doing an Androïd application in Kotlin. I have to initalize some properties whose values are unknown (it isn't but it's hard to define from now) so I'd like to make as in TypeScript, for example: public startDate: any;
which means that the type of startDate could be anything (it isn't secured but it helps to get the value anyway, not regarding what happens).
Is there a way to do it in Kotlin? I tried the '?' or the * as in the List<*> or parameters but it doesn't work that way.
Thanks for reading!