HyperLink constructor

const HyperLink(
  1. String text, {
  2. required String url,
  3. required String source,
  4. Key? key,
  5. TextStyle? textStyle,
  6. double fontSizeFactor = 1.0,
})

Implementation

const HyperLink(this.text, {
    required this.url,
    required this.source,
    Key? key,
    this.textStyle,
    this.fontSizeFactor = 1.0
}) : super(key: key);