Kotlin Sprawdź, czy zmienna jest zainicjowana

lateinit var file: File    

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