unexpectedResponse method

void unexpectedResponse(
  1. Map<String, Object?> message,
  2. Object id
)

Called when the Server received an unexpected response where the id does not match the id of an outstanding request.

Implementation

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