FastMarker constructor

FastMarker({
  1. required LatLng point,
  2. double width = 30.0,
  3. double height = 30.0,
  4. required FastMakerDrawer onDraw,
  5. dynamic onTap()?,
  6. bool? show = true,
  7. AnchorPos? anchorPos,
})

Implementation

FastMarker({
  required this.point,
  this.width = 30.0,
  this.height = 30.0,
  required this.onDraw,
  this.onTap,
  this.show = true,
  AnchorPos? anchorPos,
}) : anchor = Anchor.forPos(anchorPos, width, height);