CircleAnnotation constructor

CircleAnnotation({
  1. required String id,
  2. Map<String?, Object?>? 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,
})

Implementation

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