fromJson static method

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

Implementation

static ResponseFileSearchCallCompleted fromJson(Map<String, dynamic> json) {
  return ResponseFileSearchCallCompleted(
      itemId: json['item_id'], outputIndex: json['output_index'], sequenceNumber: json['sequence_number']);
}