RegexPatternTextStyle<T> constructor

const RegexPatternTextStyle<T>({
  1. required String regexPattern,
  2. required TextStyle textStyle,
  3. T? type,
  4. bool caseSensitive = false,
  5. bool multiLine = true,
})

Implementation

const RegexPatternTextStyle({
  required this.regexPattern,
  required this.textStyle,
  this.type,
  this.caseSensitive = false,
  this.multiLine = true,
});