Tool_GoogleSearch.fromJson constructor

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

Implementation

factory Tool_GoogleSearch.fromJson(Map<String, dynamic> json) {
  return Tool_GoogleSearch(
    timeRangeFilter: decode(json['timeRangeFilter'], Interval.fromJson),
  );
}