Kotlin prüft, ob die Variable initialisiert wird

lateinit var file: File    

if (this::file.isInitialized) { ... }
Hjmcoder