Marker constructor

Marker({
  1. Key? key,
  2. required LatLng point,
  3. required WidgetBuilder builder,
  4. double width = 30.0,
  5. double height = 30.0,
  6. AnchorPos? anchorPos,
  7. bool? rotate,
  8. Offset? rotateOrigin,
  9. AlignmentGeometry? rotateAlignment,
})

Implementation

Marker({
  this.key,
  required this.point,
  required this.builder,
  this.width = 30.0,
  this.height = 30.0,
  this.anchorPos,
  this.rotate,
  this.rotateOrigin,
  this.rotateAlignment,
});