LayoutTreeNode constructor

LayoutTreeNode({
  1. required int domNodeIndex,
  2. required Rect boundingBox,
  3. String? layoutText,
  4. List<InlineTextBox>? inlineTextNodes,
  5. int? styleIndex,
  6. int? paintOrder,
  7. bool? isStackingContext,
})

Implementation

LayoutTreeNode(
    {required this.domNodeIndex,
    required this.boundingBox,
    this.layoutText,
    this.inlineTextNodes,
    this.styleIndex,
    this.paintOrder,
    this.isStackingContext});