Stores data in the cache
id is the unique identifier for the data data is the data to store
id
data
Future<void> storeData(String id, dynamic data) async { await _cache.put(_dataKeyPrefix + id, data); }