TileBasedLabelStore constructor

TileBasedLabelStore(
  1. int capacity
)

Implementation

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