Circle constructor

Circle({
  1. LatLng? latLng,
  2. String? place,
  3. int? radius,
})

Implementation

Circle({
  this.latLng,
  this.place,
  this.radius,
});