What alternative to an Inner static Class can I use in Kotlin Language, if it exists? If not, how can I solve this problem when I need to use a static cla
Inner static Class
static cla
You can also change the "class" to "object"
class OuterA { object InnerB { ... } }
OR
object OuterA { object InnerB { ... } }