what's better pratice for constants? I have a file...
# getting-started
d
what's better pratice for constants? I have a file LogConstants.kt
Copy code
val KEY_REQUEST_BODY = "requestBody"
    val KEY_RESPONSE = "response"
or should I use
Copy code
object LogConstants {
    const val KEY_REQUEST_BODY = "requestBody"
    const val KEY_RESPONSE = "response"
}