Q:

how to remove &quot in json in "flutter"

//Dart- flutter
jsonDecode(response.body.replaceAll(r"\'", "'"));
0
//Dart - flutter

String fixed = badString.replaceAll(r"\'", "'");
json.decode(fixed);
0

New to Communities?

Join the community