SearchResponse constructor

const SearchResponse({
  1. required bool success,
  2. required Map<String, dynamic> rawResponse,
  3. List<SearchResult>? results,
  4. int? offset,
  5. SearchInfo? searchInfo,
})

Implementation

const SearchResponse({
  required this.success,
  required this.rawResponse,
  this.results,
  this.offset,
  this.searchInfo,
});