NodeCoordinate constructor

const NodeCoordinate({
  1. required double x,
  2. required double y,
})

Creates a new immutable NodeCoordinate with the given x and y values.

Implementation

const NodeCoordinate({
  required this.x,
  required this.y,
});