Kotlin Delegated Property – Observable Property
In this Kotlin tutorial, we’re gonna look at how to make an observable property by using Kotlin delegated property.
In this Kotlin tutorial, we’re gonna look at how to make an observable property by using Kotlin delegated property.
Lazy Initialization is a common pattern for delaying creation of an object, calculation of a value, or an expensive process until it’s accessed for the first time. It is helpful when the initialization process consumes significant resources and the data isn’t always required when the… Read More