RealtimeResponseMcpCallCompletedEvent.fromJson constructor
Implementation
factory RealtimeResponseMcpCallCompletedEvent.fromJson(Map<String, dynamic> j) {
return RealtimeResponseMcpCallCompletedEvent(
eventId: j['event_id'] as String,
itemId: j['item_id'] as String,
outputIndex: j['output_index'] as int,
);
}