@Keep
data class RatingData(
@SerializedName("show_nudge") val showNudge: Boolean,
@SerializedName("is_app_rated") val isAppRated: Boolean,
)
this is my response class
I wanted to know if backend sends null in anyone of these values, right now my app is not crashing but from what i know it should crash. Anyone has any idea about this, i think this is something related to Boolean because for other types it definitely crashes.