CircleAnnotationOptions constructor

CircleAnnotationOptions({
  1. required Point geometry,
  2. double? circleSortKey,
  3. double? circleBlur,
  4. int? circleColor,
  5. double? circleOpacity,
  6. double? circleRadius,
  7. int? circleStrokeColor,
  8. double? circleStrokeOpacity,
  9. double? circleStrokeWidth,
  10. bool? isDraggable,
  11. Map<String, Object>? customData,
})

Implementation

CircleAnnotationOptions({
  required this.geometry,
  this.circleSortKey,
  this.circleBlur,
  this.circleColor,
  this.circleOpacity,
  this.circleRadius,
  this.circleStrokeColor,
  this.circleStrokeOpacity,
  this.circleStrokeWidth,
  this.isDraggable,
  this.customData,
});