feedback method

  1. @override
Feedback? feedback({
  1. required bool isSoleMatch,
})
override

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,
    ],
  );
}