Kotlin verifique se a variável é inicializada

lateinit var file: File    

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