Kotlin Basics - object aka Singleton
A singleton class is a user-defined class in a way that only one instance of the class can be created and used everywhere.
Without a singleton, creating two different objects allocates two different object memories
In Kotlin, Singelton is made by usi...
vigneshprabhu.dev1 min read