getParcelable in kotlin not parsing to model object correctly Android
I use @Parcelize to make data class Parcelable like
@Parcelize
data class QuestionBO(val title: String, val options: List, val correctOptionIndex: Int,
val dateCreated: Date, val tags: List, val questionType: Int,
val userID: String, val userName: String, val totalLikes: Int,
val imageUrl: String) : Parcelable {
constructor() : this("", emptyList(), 1, Date(), emptyList(), 3, ""
, "", 34, "")
}
And calling...