is there a better way of writing this? the `getKey...
# getting-started
n
is there a better way of writing this? the
getKeys
method is inherited from the interface
Copy code
private val lazyKeys: List<String> by lazy {
        listOf("one", "two")
    }

    override fun getKeys(): List<String> = lazyKeys