Answers for "dart map json"

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
-2

dart map to json string

import 'dart:convert';
...
json.encode(data); // JSON.encode(data) in Dart 1.x
Posted by: Guest on October-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language