initializeCluster<T> static method
Implementation
static ImmutableLayerCluster<T> initializeCluster<T>({
required double x,
required double y,
required int childPointCount,
required int id,
required int zoom,
ClusterDataBase? clusterData,
}) =>
ImmutableLayerCluster<T>(
x: x,
y: y,
childPointCount: childPointCount,
id: id,
visitedAtZoom: zoom,
lowestZoom: zoom,
highestZoom: zoom,
clusterData: clusterData,
);