MapCircle constructor

MapCircle({
  1. required LatLng center,
  2. required double radius,
  3. Color fillColor = Colors.greenAccent,
  4. double fillOpacity = 1,
  5. bool clickable = true,
  6. bool editable = false,
  7. bool geodesic = false,
  8. Color strokeColor = Colors.blueAccent,
  9. double strokeOpacity = 1,
  10. double strokeWeight = 1,
  11. bool visible = true,
  12. int zIndex = 1,
})

Implementation

MapCircle({
  required LatLng center,
  required double radius,
  Color fillColor=Colors.greenAccent,
  double fillOpacity=1,
  // StrokePosition strokePosition=StrokePosition.CENTER,
  bool clickable = true,
  bool editable = false,
  bool geodesic = false,
  Color strokeColor = Colors.blueAccent,
  double strokeOpacity = 1,
  double strokeWeight = 1,
  bool visible = true,
  int zIndex = 1,
}):_center=center,_radius=radius,super(clickable: clickable,editable: editable,geodesic: geodesic,fillColor: fillColor,fillOpacity: fillOpacity,strokeColor: strokeColor,strokeOpacity: strokeOpacity,strokeWeight: strokeWeight,visible: visible,zIndex: zIndex);