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