Android Kotlin LazyThreadSafetyMode.NONE
In most of the samples regarding Android View Model and lazy init nobody refers to the parameters which can be used in by Lazy.
From the
Kotlin docu:
If you're sure that the initialization will always happen in the same thread as the one where you use the property, you can use LazyThreadSafetyMode.NONE. It doesn't incur any thread-safety guarantees and related overhead.
I can not...