Circle constructor

Circle(
  1. dynamic latlng, {
  2. double? radius,
  3. RadiusUnit radiusUnit = RadiusUnit.METER,
  4. bool? stroke,
  5. Color? strokeColor,
  6. double? strokeWidth,
  7. double? strokeOpacity,
  8. StrokeCap? strokeCap,
  9. StrokeJoin? strokeJoin,
  10. bool? fill,
  11. Color? fillColor,
  12. double? fillOpacity,
  13. dynamic data,
})

Implementation

Circle(
  dynamic latlng, {
  this.radius,
  this.radiusUnit = RadiusUnit.METER,
  this.stroke,
  this.strokeColor,
  this.strokeWidth,
  this.strokeOpacity,
  this.strokeCap,
  this.strokeJoin,
  this.fill,
  this.fillColor,
  this.fillOpacity,
  this.data,
}) : latlng = LatLng.from(latlng);