Implementation
@override
String get uuid => switch (this) {
ImmutableLayerCluster(:var id) => id.toString(),
ImmutableLayerPoint(:var highestZoom, index: var index) =>
"$highestZoom-$index",
ImmutableLayerElement<T>() => throw UnimplementedError(),
};