Hyperlink constructor

const Hyperlink(
  1. Widget? child,
  2. String? url, {
  3. Key? key,
})

Must supply a child widget and a url string.

Implementation

const Hyperlink(this.child, this.url, {Key? key}) : super(key: key);