area function
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,
- dynamic className,
- dynamic style,
- 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
}));