operator + method
- GpsCoordinates other
Implementation
GpsCoordinates operator +(GpsCoordinates other) => GpsCoordinates(
latitude: latitude + other.latitude,
longitude: longitude + other.longitude,
);
GpsCoordinates operator +(GpsCoordinates other) => GpsCoordinates(
latitude: latitude + other.latitude,
longitude: longitude + other.longitude,
);