ImageMapArea constructor

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

Implementation

const ImageMapArea({
  this.alt,
  this.coords,
  this.href,
  this.hrefLang,
  this.ping,
  this.referrerPolicy,
  this.rel,
  this.shape,
  this.target,
  this.download,
  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,
      );