MatchText constructor

MatchText({
  1. ParsedType type = ParsedType.CUSTOM,
  2. String? pattern,
  3. TextStyle? style,
  4. dynamic onTap(
    1. String
    )?,
  5. Map<String, String> renderText({
    1. required String pattern,
    2. required String str,
    })?,
  6. Widget renderWidget({
    1. required String pattern,
    2. required String text,
    })?,
})

Creates a MatchText object

Implementation

MatchText({
  this.type = ParsedType.CUSTOM,
  this.pattern,
  this.style,
  this.onTap,
  this.renderText,
  this.renderWidget,
});