<@U3CRR6B5J> is right. You could use the `lazy` de...
# android
s
@kojdecki is right. You could use the
lazy
delegation like this instead of having a separate
instanceOf
function:
Copy code
companion object {
  val instance by lazy { MyRxBus() }
}