embed function
Implementation
Node embed({
num? height,
String? src,
String? type,
num? width,
String? id,
className,
style,
Map<String, dynamic> p = const {},
}) =>
SelfClosingNode(
'embed',
_apply([
p
], {
'height': height,
'src': src,
'type': type,
'width': width,
'id': id,
'class': className,
'style': style
}));