isJsonObject static method

bool isJsonObject(
  1. dynamic response
)

Checks if the response is a JSON object.

Implementation

static bool isJsonObject(dynamic response) {
  return response is Map<String, dynamic>;
}