Should I be using a value or a function here? ``` ...
# codingconventions
n
Should I be using a value or a function here?
Copy code
fun getHeaderColor() : String? {
	return data["theme"]?.let {
		(it as Map<*, *>)["color-community-header"]?.toString()
	}
}
Copy code
val headerColor: String? = data["theme"]?.let {
	(it as Map<*, *>)["color-community-header"]?.toString()
}