Not Able to Fetch JSON values to field in flutter
问题 I am able to fetch the JSON data successfully, but not able to fetch the fields of JSON data and build a list in flutter. This is the code I am using to fetch the field data OrderModel.fromJson(Map<String, dynamic> json) { error = json['error']; if (json['content'] != null) { content = new List<OrderContent>(); json['content'].forEach((v) { content.add(new OrderContent.fromJson(v)); }); } } The json['content'] is Map<String, dynamic> . In .forEach((v) what should I write to get the data? I am