get abstract method

Future<Uint8List?> get(
  1. TileKey key
)

Returns the decompressed bytes for key, or null if the tile is not cached.

Updates last_accessed_at on a hit. If the tile age exceeds TTL and PackageConfig.cacheStaleCallback is non-null, the callback is invoked before returning the stale bytes.

Implementation

Future<Uint8List?> get(TileKey key);