operator - method

  1. @override
Geographic operator -(
  1. Position other
)
override

Returns a position with coordinate values of this subtracted with values of other.

Implementation

@override
Geographic operator -(Position other) =>
    cartesianPositionSubtract(this, other, to: Geographic.create);