I kinda feel that `lateinit` is a cop-out because ...
# announcements
m
I kinda feel that
lateinit
is a cop-out because it removes the
null
safety. Correct me if wrong in this thinking, but have a variable declared like
var someVariable: <Type>? = null
is safer then
lateinit var someVariable: <Type>