<@U35KQEZHV> if you're so desperate for reducing m...
# android
k
@vovkab if you're so desperate for reducing methods, here are some more potential reductions: - use
const val
instead of plain
val
for constants (should remove one method per). - `private val`s in `companion object`s (even if
const
) will produce accessor methods. make them public to get rid of the accessor methods
👍 1