onClusterTap method

  1. @override
void onClusterTap(
  1. PlatformCluster cluster
)

Called when a marker cluster is tapped.

Implementation

@override
void onClusterTap(PlatformCluster cluster) {
  streamController.add(
    ClusterTapEvent(
      mapId,
      GoogleMapsFlutterIOS.clusterFromPlatformCluster(cluster),
    ),
  );
}