I wanted to get value from the API JSON object. My API JSON response is like this.
{
"jobs": [
{
"id": 1,
"user_id": "10",
"job_id": "1",
"experience": "12",
"salary": "1122378"
"job": {
"id": 1,
"title": "PHP SENIOR DEVELOPER",
"company_name": "Envato",
}
}
]
}
I wanted to get the title from the job JSON object. How can we get this value in flutter?