isJsonString function
Implementation
bool isJsonString(string) {
try {
jsonDecode(string);
} catch (e) {
return false;
}
return true;
}
bool isJsonString(string) {
try {
jsonDecode(string);
} catch (e) {
return false;
}
return true;
}