is `val nullable = platformTypeVariable ?: null` t...
# announcements
n
is
val nullable = platformTypeVariable ?: null
the correct way to tell Kotlin that a platform type is nullable ?
a
The best way is describe type directly:
val nullable: MyType? = platformTypeVariable
👆 1
1
👍 7