justAsync function
void
justAsync()
Implementation
void justAsync() async {
// it will just retrieve data async
CacheManager<FaKeData> cacheManager = CacheManager<FaKeData>.justAsync(
key: 'your key',
asyncBloc: getFakeDataAsync);
FaKeData? faKeData = await cacheManager();
}