Returns true if value is a JSON.
true
value
bool isJSON(Object? value) { return isJSONPrimitive(value) || isJSONList(value) || isJSONMap(value); }