feedback method
Should return the warning and suggestions regarding this match.
Implementation
@override
Feedback? feedback({required bool isSoleMatch}) {
switch (regExName) {
case 'recentYear':
return Feedback(
warning: Translation.warnings.recentYears,
suggestions: <String>[
Translation.suggestions.recentYears,
Translation.suggestions.associatedYears,
],
);
}
return null;
}