withRadius method

GeoValue withRadius(
  1. double radiusKm
)

Specify radiusKm to generate a new GeoValue.

radiusKmを指定して、新しいGeoValueを生成します。

Implementation

GeoValue withRadius(double radiusKm) {
  return copyWith(radiusKm: radiusKm);
}