what is singleton class in kotlin android code example
Example 1: kotlin singleton
// Just use object
object SomeSingleton
Example 2: Kotlin singleton
object MySingleton {
fun myMethod(): Int {
return 5
}
}
MySingleton.myMethod() // 5