computeDistanceBetween static method
Returns the distance between two LatLngs, in meters.
Implementation
static double computeDistanceBetween(Point<double> from, Point<double> to) =>
computeAngleBetween(from, to) * MathUtils.earthRadius;
Returns the distance between two LatLngs, in meters.
static double computeDistanceBetween(Point<double> from, Point<double> to) =>
computeAngleBetween(from, to) * MathUtils.earthRadius;