isJsonObject static method
Checks if the response is a JSON object.
Implementation
static bool isJsonObject(dynamic response) {
return response is Map<String, dynamic>;
}
Checks if the response is a JSON object.
static bool isJsonObject(dynamic response) {
return response is Map<String, dynamic>;
}