area function

Node area({
  1. String? alt,
  2. Iterable<num>? coordinates,
  3. String? download,
  4. String? href,
  5. String? hreflang,
  6. String? media,
  7. String? nohref,
  8. String? rel,
  9. String? shape,
  10. String? target,
  11. String? type,
  12. String? id,
  13. dynamic className,
  14. dynamic style,
  15. Map<String, dynamic> p = const {},
})

Implementation

Node area({
  String? alt,
  Iterable<num>? coordinates,
  String? download,
  String? href,
  String? hreflang,
  String? media,
  String? nohref,
  String? rel,
  String? shape,
  String? target,
  String? type,
  String? id,
  className,
  style,
  Map<String, dynamic> p = const {},
}) => SelfClosingNode(
  'area',
  _apply(
    [p],
    {
      'alt': alt,
      'coordinates': coordinates,
      'download': download,
      'href': href,
      'hreflang': hreflang,
      'media': media,
      'nohref': nohref,
      'rel': rel,
      'shape': shape,
      'target': target,
      'type': type,
      'id': id,
      'class': className,
      'style': style,
    },
  ),
);