Hi I am a newbie to kotlinx serialization and I am using KMP, my requirement is a little different
my data class
@Serializable data class Student(val name : String , val age : Int)
and my simple JSON would be "['Avinash', 22]",
which should be deserialized to Student("Avinash", 22)
I'm not able to deserialize it can anyone help me