distanceBetween abstract method
Calculates the distance between the supplied coordinates in meters.
The distance between the coordinates is calculated using the Haversine
formula (see https://en.wikipedia.org/wiki/Haversine_formula). The
supplied coordinates startLatitude
, startLongitude
, endLatitude
and
endLongitude
should be supplied in degrees.
Implementation
double distanceBetween({
required double startLatitude,
required double startLongitude,
required double endLatitude,
required double endLongitude,
});