RegexColoredText constructor

const RegexColoredText({
  1. required String text,
  2. required Pattern pattern,
  3. Key? key,
  4. TextStyle? style,
  5. TextStyle? matchStyle,
})

Implementation

const RegexColoredText({
  required this.text,
  required this.pattern,
  super.key,
  this.style,
  this.matchStyle,
});