ReplacedElement constructor
ReplacedElement({
- required String name,
- required Style style,
- required String elementId,
- List<
StyledElement> ? children, - Element? node,
- PlaceholderAlignment alignment = PlaceholderAlignment.aboveBaseline,
Implementation
ReplacedElement({
required String name,
required Style style,
required String elementId,
List<StyledElement>? children,
dom.Element? node,
this.alignment = PlaceholderAlignment.aboveBaseline,
}) : super(name: name, children: children ?? [], style: style, node: node, elementId: elementId);