ResponseFunctionCallArgumentsDelta.fromJson constructor

ResponseFunctionCallArgumentsDelta.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ResponseFunctionCallArgumentsDelta.fromJson(Map<String, dynamic> json) => ResponseFunctionCallArgumentsDelta(
      itemId: json['item_id'] as String,
      outputIndex: json['output_index'] as int,
      delta: json['delta'] as String,
      sequenceNumber: json['sequence_number'] as int,
    );