removeTilesOlderThan abstract method

Future<int> removeTilesOlderThan({
  1. required String storeName,
  2. required DateTime expiry,
})

Remove tiles that were last modified after expiry from the specified store

Returns the number of tiles that were actually deleted (they were orphaned). See deleteTile for more information about orphan tiles.

Implementation

Future<int> removeTilesOlderThan({
  required String storeName,
  required DateTime expiry,
});