NullablePoint class
A two-dimensional cartesian coordinate pair with potentially null coordinate values.
Constructors
- NullablePoint(double? x, double? y)
- 
          Creates a point with the provided xandycoordinates.const
- 
          NullablePoint.from(Point<double> ? point)
- Creates a NullablePoint from a Point.
Properties
Methods
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toPoint() → Point< double> 
- Converts this to a Point.
- 
  toString() → String 
- 
  A string representation of this object.
  override
Operators
- 
  operator ==(Object other) → bool 
- 
  Whether otheris a point with the same coordinates as this point.override