SuggestionMatch constructor

SuggestionMatch({
  1. String? id,
  2. int? score,
  3. String? suggestion,
})

Implementation

SuggestionMatch({
  this.id,
  this.score,
  this.suggestion,
});