MatchScore constructor
MatchScore({
- required double score,
- required bool isMatch,
- List<
MatchIndex> matchedIndices = const [],
Instantiates a match with score and matched locations
Implementation
MatchScore({
required this.score,
required this.isMatch,
this.matchedIndices = const [],
});