feedback method
Should return the warning and suggestions regarding this match.
Implementation
@override
Feedback? feedback({required bool isSoleMatch}) {
final Feedback? feedback = super.feedback(isSoleMatch: isSoleMatch);
return Feedback(
warning: feedback?.warning,
suggestions: <String>[
...?feedback?.suggestions,
Translation.suggestions.l33t,
],
);
}