That’s some default naming conversion by Kotlin. I...
# android
e
That’s some default naming conversion by Kotlin. It is similar to
val name
and
fun getName()
, both are treated as the same thing. For boolean,
val valid
and
fun isValid()
is the same.