NullablePoint constructor

const NullablePoint(
  1. double? x,
  2. double? y
)

Creates a point with the provided x and y coordinates.

Implementation

const NullablePoint(this.x, this.y);