NullablePoint.from constructor

NullablePoint.from(
  1. Point<double>? point
)

Creates a NullablePoint from a Point.

Implementation

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