Flutter – Dart: Error parsing JSON with nested json embedded in string
I am having issue with the below code, the following code failed to parse the given json: import 'dart:convert'; void main() { String jsonString = ''' { "status": "success", "data":{ "edit": 1, "draft": "{"id":"25863","type":"ABC"}" } } '''; try{ var decode…