Hyperlink constructor

const Hyperlink({
  1. bool enable = true,
  2. TextStyle style = defaultHyperlinkTextStyle,
  3. void onTap(
    1. BuildContext context,
    2. String url
    )?,
})

Implementation

const Hyperlink({
  this.enable = true,
  this.style = defaultHyperlinkTextStyle,
  this.onTap,
});