What is the recommended way to declare private con...
# codingconventions
z
What is the recommended way to declare private constants only used by a single class and why? 1. At the file level as private const val AWESOME_CONSTANT 2. Inside the class as private val awesomeConstant 3. In a companion object as private const val AWESOME_CONSTANT 4. Something else
1️⃣ 4
s
1, but with camelCase