kotlin vérifie si la variable est initialisée

lateinit var file: File    

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