Link constructor

const Link({
  1. Key? key,
  2. required Uri? uri,
  3. LinkTarget target = LinkTarget.defaultTarget,
  4. required LinkWidgetBuilder builder,
})

Creates a widget that renders a real link on the web, and uses WebViews in native platforms to open links.

Implementation

const Link({
  super.key,
  required this.uri,
  this.target = LinkTarget.defaultTarget,
  required this.builder,
});