CircleMapObject constructor

const CircleMapObject({
  1. required MapObjectId mapId,
  2. required Circle circle,
  3. bool isGeodesic = false,
  4. double zIndex = 0.0,
  5. TapCallback<CircleMapObject>? onTap,
  6. bool consumeTapEvents = false,
  7. bool isVisible = true,
  8. Color strokeColor = const Color(0xFF0066FF),
  9. double strokeWidth = 5.0,
  10. Color fillColor = const Color(0xFF64B5F6),
})

Implementation

const CircleMapObject({
  required this.mapId,
  required this.circle,
  this.isGeodesic = false,
  this.zIndex = 0.0,
  this.onTap,
  this.consumeTapEvents = false,
  this.isVisible = true,
  this.strokeColor = const Color(0xFF0066FF),
  this.strokeWidth = 5.0,
  this.fillColor = const Color(0xFF64B5F6),
});