removeData method

Future<void> removeData(
  1. String id
)

Removes data from the cache

id is the unique identifier for the data

Implementation

Future<void> removeData(String id) async {
  await _cache.delete(_dataKeyPrefix + id);
}