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