create static method
Factory constructor to create a DataCacheManager
Implementation
static Future<DataCacheManager> create({bool useDatabase = true}) async {
// Initialize the data cache
await setupDataCacheX(adapterType: CacheAdapterType.memory);
final cache = getIt<DataCacheX>();
return DataCacheManager(cache);
}