kotlin static attribute code example
Example 1: kotlin static method
class Foo {
companion object {
fun a() : Int = 1
}
}
Foo.a()
Example 2: kotlin static field
class Theme {
companion object { const val THEME_KEY = "a_theme_key" }
}