unexpectedResponseFormat method

void unexpectedResponseFormat(
  1. Map<String, Object?> message
)

Called when the Server received a response, which is not an error, but the result is not an JSON object.

Implementation

void unexpectedResponseFormat(Map<String, Object?> message) {
  log('Unexpected response format from server', '$message');
}