If I have the following code ``` interface Bootst...
# announcements
r
If I have the following code
Copy code
interface BootstrapListener {
    fun onBootstrapComplete()
}

class PlayoutSocketClient(private val config: PlayoutClientConfig, private val bootstrapListener: BootstrapListener = object : BootstrapListener {
    override fun onBootstrapComplete() {}
}) {
What is a more concise way to provide a default implementation for the bootstrapListener constructor parameter?