feedback method
Should return the warning and suggestions regarding this match.
Implementation
@override
Feedback? feedback({required bool isSoleMatch}) {
return Feedback(
warning: turns == 1
? Translation.warnings.straightRow
: Translation.warnings.keyPattern,
suggestions: <String>[
Translation.suggestions.longerKeyboardPattern,
],
);
}