TileBasedLabelStore constructor
TileBasedLabelStore(
- int capacity
Implementation
TileBasedLabelStore(int capacity) {
_cache = new LruCache<Tile, List<RenderInfo>>(
storage: storage,
capacity: capacity,
);
}