lateinit property has not been initialized kotlin code example
Example: kotlin var init check
lateinit var file: File
if (this::file.isInitialized) { ... }
lateinit var file: File
if (this::file.isInitialized) { ... }