ReplacedElement constructor

ReplacedElement({
  1. required String name,
  2. required Style style,
  3. required String elementId,
  4. List<StyledElement>? children,
  5. Element? node,
  6. 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);