LinkifyText constructor

const LinkifyText(
  1. String text, {
  2. TextStyle? textStyle,
  3. TextStyle? linkStyle,
  4. List<LinkType>? linkTypes,
  5. void onTap(
    1. Link
    )?,
  6. Map<LinkType, TextStyle>? customLinkStyles,
  7. StrutStyle? strutStyle,
  8. TextAlign? textAlign,
  9. TextDirection? textDirection,
  10. Locale? locale,
  11. bool? softWrap,
  12. TextOverflow? overflow,
  13. TextScaler? textScaler,
  14. int? maxLines,
  15. String? semanticsLabel,
  16. TextWidthBasis? textWidthBasis,
  17. Key? key,
})

Implementation

const LinkifyText(this.text,
    {this.textStyle,
    this.linkStyle,
    this.linkTypes,
    this.onTap,
    this.customLinkStyles,
    this.strutStyle,
    this.textAlign,
    this.textDirection,
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaler,
    this.maxLines,
    this.semanticsLabel,
    this.textWidthBasis,
    Key? key})
    : super(key: key);