Link constructor

const Link({
  1. Key? key,
  2. required Uri url,
  3. bool openInNewTab = false,
  4. required List<Component> children,
})

Implementation

const Link({
  super.key,
  required this.url,
  this.openInNewTab = false,
  required this.children,
});