get json in json data flutter code example
Example: flutter access json object inside object
myJson = {
"label": "This is a string",
"value": {
"address": "This is a string",
"country": "This is a string"
}
}
//to access address field
var decodedJson = json.decode(myJson);
var jsonValue = json.decode(decodedJson['value']);
print(jsonValue['address']);