EventNode constructor

EventNode({
  1. bool isStart = false,
  2. Coordinate pt,
  3. Segment seg,
  4. bool primary = false,
  5. EventNode other,
  6. StatusNode status,
  7. EventNode next,
  8. EventNode prev,
})

Implementation

EventNode(
    {this.isStart = false,
    this.pt,
    this.seg,
    this.primary = false,
    this.other,
    this.status,
    this.next,
    this.prev});