In relation to my question here
I want to parse a JSON array without a key within JSON array and put it in a Model class.
here is a JSON Array that I want to parse.
[
{
"pk": 100,
"user": 5,
"name": "Flutter",
"details": "Fluttery",
"images": [
89,
88,
87,
86
],
"priority": 5
},
{
"pk": 99,
"user": 5,
"name": "",
"details": "h",
"images": [],
"priority": 5
},
{
"pk": 98,
"user": 5,
"name": "Flutter",
"details": "Fluttery",
"images": [
85
],
"priority": 5
},
]
I have successfully parse the main Array but I cannot parse the images key that contains an array of integers. I want to put it into Model class. please help.
Thank you!