Node constructor

Node(
  1. Coordinate coord,
  2. EdgeEndStar? edges
)

Implementation

Node(this.coord, EdgeEndStar? edges) {
  this.edges = edges;
  label = new Label.args2(0, Location.NONE);
}