PerformSearchResult.fromJson constructor

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

Implementation

factory PerformSearchResult.fromJson(Map<String, dynamic> json) {
  return PerformSearchResult(
    searchId: json['searchId'] as String,
    resultCount: json['resultCount'] as int,
  );
}