GeoMarker constructor

GeoMarker({
  1. required String name,
  2. String? description,
  3. required LatLng point,
  4. required Widget builder(
    1. BuildContext
    ),
  5. double width = 50,
  6. double height = 50,
  7. AnchorPos? anchorPos,
})

Implementation

GeoMarker({
  required this.name,
  this.description,
  required this.point,
  required this.builder,
  this.width = 50,
  this.height = 50,
  this.anchorPos,
});