is there a way to make a class field as a java sta...
# announcements
d
is there a way to make a class field as a java static, I mean 1 general field for all instances
d
dev-priporov: Put the property in the companion object and mark it with
@JvmStatic
.
d
thank you!