isNear method

bool isNear(
  1. GpsCoordinates other
)

Implementation

bool isNear(GpsCoordinates other) =>
  (latitude - other.latitude).abs() < epsilonLatitude &&
  (longitude - other.longitude).abs() < epsilonLongitude;