``` interface Foo { companion object { ...
# getting-started
b
Copy code
interface Foo {
    companion object {
        val defaultGetCount = 20
    }
    
    fun get(count: Int = defaultGetCount): List<Item>
}