$Vertex constructor

$Vertex({
  1. int? x,
  2. int? y,
})

Implementation

$Vertex({
  this.x,
  this.y,
});