LinkifyText constructor

const LinkifyText({
  1. Key? key,
  2. required String text,
  3. required TextStyle style,
  4. TextStyle? linkStyle,
})

Implementation

const LinkifyText({
  super.key,
  required this.text,
  required this.style,
  this.linkStyle,
});