CircleMarker constructor

CircleMarker({
  1. required LatLng point,
  2. required double radius,
  3. Key? key,
  4. bool useRadiusInMeter = false,
  5. Color color = const Color(0xFF00FF00),
  6. double borderStrokeWidth = 0.0,
  7. Color borderColor = const Color(0xFFFFFF00),
})

Implementation

CircleMarker({
  required this.point,
  required this.radius,
  this.key,
  this.useRadiusInMeter = false,
  this.color = const Color(0xFF00FF00),
  this.borderStrokeWidth = 0.0,
  this.borderColor = const Color(0xFFFFFF00),
});