CircleOptions constructor
const
CircleOptions({
- required GeoPoint position,
- required Meter radius,
- Color color = const Color(),
- LogicalPixel strokeWidth = const LogicalPixel(0),
- Color strokeColor = const Color(),
- DashedStrokeCircleOptions? dashedStrokeOptions = null,
- bool visible = true,
- Object? userData = const {},
- ZIndex zIndex = const ZIndex(0),
- 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
});