CircleOptions constructor

const CircleOptions({
  1. required GeoPoint position,
  2. required Meter radius,
  3. Color color = const Color(),
  4. LogicalPixel strokeWidth = const LogicalPixel(0),
  5. Color strokeColor = const Color(),
  6. DashedStrokeCircleOptions? dashedStrokeOptions = null,
  7. bool visible = true,
  8. Object? userData = const {},
  9. ZIndex zIndex = const ZIndex(0),
  10. LevelId? levelId = null,
})

Implementation

const CircleOptions({
  required this.position,
  required this.radius,
  this.color = const Color(),
  this.strokeWidth = const LogicalPixel(0),
  this.strokeColor = const Color(),
  this.dashedStrokeOptions = null,
  this.visible = true,
  this.userData = const {},
  this.zIndex = const ZIndex(0),
  this.levelId = null
});