SuggestModel constructor

SuggestModel({
  1. int? found,
  2. String? query,
  3. List<SuggestionMatch>? suggestions,
})

Implementation

SuggestModel({
  this.found,
  this.query,
  this.suggestions,
});