fromJson static method
Implementation
static ResponseMcpCallFailed fromJson(Map<String, dynamic> j) {
switch (j['type']) {
case 'response.mcp_call.failed':
return ResponseMcpCallFailed(j);
default:
throw ArgumentError('Unknown MCP-call event ${j['type']}.');
}
}