isJsonArray static method
Checks if the response is a JSON array.
Implementation
static bool isJsonArray(dynamic response) {
return response is List<dynamic>;
}
Checks if the response is a JSON array.
static bool isJsonArray(dynamic response) {
return response is List<dynamic>;
}