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