W3cubDocs

/Dart 2

AnchorElement constructor

AnchorElement({String href })

Implementation

factory AnchorElement({String href}) {
  AnchorElement e = JS('returns:AnchorElement;creates:AnchorElement;new:true',
      '#.createElement(#)', document, "a");
  if (href != null) e.href = href;
  return e;
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-html/AnchorElement/AnchorElement.html