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}) {
  return Feedback(
    warning: Translation.warnings.sequences,
    suggestions: <String>[Translation.suggestions.sequences],
  );
}