check method

void check()

Implementation

void check(){
  print("cacheManager instance:\n");
  data.forEach((key, value) {
    print(key);
    value.check();
  });
  print("end check\n=============================\n\n");
}