CircleMarker constructor

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

Implementation

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