Link constructor
const
Link({
- Key? key,
- required Uri? uri,
- LinkTarget target = LinkTarget.defaultTarget,
- 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,
});