buildMarker property

(Marker Function(Place place)?) buildMarker
final

To draw the marker on Map when showMarkerClusters is not set to true.

For example,

  buildMarker: (Place place) {
    return Marker(
            markerId: MarkerId(place.id),
            position: place.position
    );
  }
```dart

Implementation

final Marker Function(Place place)? buildMarker;