PathAnnotation constructor

PathAnnotation({
  1. bool fixed = false,
  2. double? minZoomVisible,
  3. double? maxZoomVisible,
  4. required Path path,
  5. Color color = const Color(0xFFF5F5F5),
  6. Offset anchor(
    1. Size
    )?,
})

Implementation

PathAnnotation({
  super.fixed = false,
  super.minZoomVisible,
  super.maxZoomVisible,
  required this.path,
  this.color = const Color(0xFFF5F5F5),
  this.anchor,
});