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