Outline constructor

Outline(
  1. Element element,
  2. int offset,
  3. int length,
  4. int codeOffset,
  5. int codeLength, {
  6. List<Outline>? children,
})

Implementation

Outline(
    this.element, this.offset, this.length, this.codeOffset, this.codeLength,
    {this.children});