HyperlinkText constructor

HyperlinkText({
  1. required String url,
  2. String? label,
  3. Style? style,
  4. Color? linkColor,
  5. bool showUrl = false,
  6. Key? key,
})

Implementation

HyperlinkText({
  required this.url,
  this.label,
  this.style,
  this.linkColor,
  this.showUrl = false,
  super.key,
});