fromJson static method
Implementation
static ResponseFileSearchCallSearching fromJson(Map<String, dynamic> json) {
switch (json['type']) {
case 'response.file_search_call.searching':
return ResponseFileSearchCallSearching(json);
default:
throw ArgumentError('Unknown file-search event type "${json['type']}".');
}
}