ScoreMatch constructor

ScoreMatch({
  1. required String character,
  2. required int matrixIndex,
  3. required double score,
})

Constructs a ScoreMatch object with the provided character, matrixIndex, and score.

The character represents the matched character, the matrixIndex is the index of the matching template matrices, and the score is the final score in percentage (0..1).

Implementation

ScoreMatch({
  required this.character,
  required this.matrixIndex,
  required this.score,
});