isJSON function
check if the string is valid JSON
Implementation
bool isJSON(str) {
try {
jsonDecode(str);
} catch (e) {
return false;
}
return true;
}
check if the string is valid JSON
bool isJSON(str) {
try {
jsonDecode(str);
} catch (e) {
return false;
}
return true;
}