distanceKm method

double distanceKm(
  1. GeoValue target
)

Returns the distance to target.

Returned in kilometers.

targetとの距離を返します。

km単位で返されます。

Implementation

double distanceKm(GeoValue target) {
  return distanceKmBetween(
    from: this,
    to: target,
  );
}