SearchResponse constructor

SearchResponse({
  1. required String status,
  2. String? errorMessage,
  3. List<MatchItem?>? matchList,
})

Implementation

SearchResponse({
  required this.status,
  this.errorMessage,
  this.matchList,
});