get method
RenderInfoCollection?
get(
- Tile tile
Implementation
RenderInfoCollection? get(Tile tile) {
try {
return _cache.get(tile);
} catch (error) {
// Exception: Cannot get a value from a producer since the value is a future and the get() method is synchronously
// a value is still in progress, return null
return null;
}
}