Colton Idle
01/12/2022, 9:08 PMname
that's a String? Just 5, right? Or are there some other annotations or something that could change the result?
val name: String = "default"
val name: String? = "default"
val name: String? = null
val name: String?
val name: String
My intent in the cheat sheet is to show "Hey if your field is defined like this, and your backend sends "foo", explicit null, or omits the field in json entirely, this is your result."