Anchor constructor

const Anchor({
  1. String? href,
  2. String? hrefLang,
  3. String? ping,
  4. ReferrerPolicyType? referrerPolicy,
  5. String? rel,
  6. String? target,
  7. String? download,
  8. String? type,
  9. Key? key,
  10. NullableElementCallback? ref,
  11. String? id,
  12. String? title,
  13. String? style,
  14. String? className,
  15. bool? hidden,
  16. String? innerText,
  17. Widget? child,
  18. List<Widget>? children,
  19. EventCallback? onClick,
  20. Map<String, String>? additionalAttributes,
})

Implementation

const Anchor({
  this.href,
  this.hrefLang,
  this.ping,
  this.referrerPolicy,
  this.rel,
  this.target,
  this.download,
  this.type,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );