checkTileCachedAsync method

  1. @Deprecated(''' Migrate to `checkTileCached`. Synchronous operations have been removed throughout FMTC v9, therefore the distinction between sync and async operations has been removed. This deprecated member will be removed in a future version.''')
Future<bool> checkTileCachedAsync({
  1. required TileCoordinates coords,
  2. required TileLayer options,
})

Check whether a specified tile is cached in the current store

Implementation

@Deprecated('''
Migrate to `checkTileCached`.

Synchronous operations have been removed throughout FMTC v9, therefore the
distinction between sync and async operations has been removed. This deprecated
member will be removed in a future version.''')
Future<bool> checkTileCachedAsync({
  required TileCoordinates coords,
  required TileLayer options,
}) =>
    checkTileCached(coords: coords, options: options);