Area constructor

Area(
  1. GeoPoint center,
  2. double radiusInKilometers
)

Implementation

Area(this.center, this.radiusInKilometers)
    : assert(geoPointValid(center)),
      assert(radiusInKilometers >= 0);