googleMapsMarker property

Marker googleMapsMarker

Implementation

googleMaps.Marker get googleMapsMarker => googleMaps.Marker(
      markerId: this.markerId.googleMapsMarkerId,
      alpha: this.alpha,
      draggable: this.draggable,
      infoWindow: this.infoWindow.googleMapsInfoWindow,
      onTap: this.onTap,
      icon: this.icon?.bitmapDescriptor ??
          BitmapDescriptor.defaultMarker?.bitmapDescriptor,
      visible: this.visible,
      onDragEnd: this.onDragEnd != null
          ? (googleMaps.LatLng latLng) =>
              _onGoogleMarkerDragEnd(latLng, this.onDragEnd)
          : null,
      position: this.position.googleLatLng,
    );