NullablePoint.from constructor
Creates a NullablePoint from a Point.
Implementation
NullablePoint.from(Point<double>? point) : this(point?.x, point?.y);
Creates a NullablePoint from a Point.
NullablePoint.from(Point<double>? point) : this(point?.x, point?.y);