I have this json object
{
"107": "First",
"125": "Second",
"130": "Third",
"141": "Fourth"
}
I want to convert it into array of objects like this
[
{
"107":"First"
},
{
"125":"Second"
},
{
"130":"Third"
},
{
"141":"Fourth"
}
]
To be easy to extract each object in the form of Array.
How can I do this by kotlin?