HighlightedTextStyle constructor

HighlightedTextStyle({
  1. required String highlightedText,
  2. required TextStyle customStyle,
  3. bool allowsPartialMatch = false,
})

Creates an instance of HighlightedTextStyle with named parameters.

Implementation

HighlightedTextStyle({
  required this.highlightedText,
  required this.customStyle,
  this.allowsPartialMatch = false,
});