ResponseFunctionCallArgumentsDeltaEvent.fromJson constructor
Creates a ResponseFunctionCallArgumentsDeltaEvent from JSON.
Implementation
factory ResponseFunctionCallArgumentsDeltaEvent.fromJson(
Map<String, dynamic> json,
) {
return ResponseFunctionCallArgumentsDeltaEvent(
eventId: json['event_id'] as String,
responseId: json['response_id'] as String,
itemId: json['item_id'] as String,
outputIndex: json['output_index'] as int,
callId: json['call_id'] as String,
delta: json['delta'] as String,
);
}