LinkifyText constructor

LinkifyText(
  1. String data, {
  2. Color? fontColor,
  3. Color? linkColor,
  4. double? fontSize,
  5. String? fontFamily,
  6. FontWeight? fontWeight,
  7. FontStyle? fontStyle,
  8. bool isLinkNavigationEnable = true,
})

Implementation

LinkifyText(
  this.data, {
  this.fontColor,
  this.linkColor,
  this.fontSize,
  this.fontFamily,
  this.fontWeight,
  this.fontStyle,
  this.isLinkNavigationEnable = true,
});