CircleAnnotation constructor

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

Implementation

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