Concept Flow - Platform types and null safety
Start with Kotlin code
Call Java method
Java method returns value
Kotlin treats value as platform type
Kotlin compiler allows nullable or non-nullable use
Possible runtime null check failure if misused
Program continues or crashes
Kotlin calls Java code returning platform types, which Kotlin treats as unknown nullability, allowing flexible but unsafe usage.