Edge constructor

Edge(
  1. List<Coordinate> pts,
  2. Label? label
)

Implementation

Edge(this.pts, Label? label) {
  eiList = new EdgeIntersectionList(this);
  this.label = label;
}