ResponeFunctionCallArgumentsDone.fromJson constructor

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

Implementation

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