Answers for "flutter json parsing"

1

flutter parse json

Map<String, dynamic> user = jsonDecode(jsonString);

print('Howdy, ${user['name']}!');
print('We sent the verification link to ${user['email']}.');
Posted by: Guest on August-03-2021
0

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']);
Posted by: Guest on October-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language