how do you do a check for a `lateinit var` to know...
# android
l
how do you do a check for a
lateinit var
to know when its been initialized
i
you can use
::property.isInitialized
Returns
true
if this lateinit property has been assigned a value, and
false
otherwise. Egor's Point is very valid too