Variable de acceso de Kotlin desde otra clase
class Test {
companion object {
var mInteger: Int = 5
}
}
//You can call like this
Test.Companion.mInteger
or
Test.mInteger
abdullah