how to remove &quot in json in "flutter" code example
Example: how to remove " in json in "flutter"
//Dart- flutter
jsonDecode(response.body.replaceAll(r"\'", "'"));
//Dart- flutter
jsonDecode(response.body.replaceAll(r"\'", "'"));