init method

void init()

The init method is called to initialize the cache manager. It will reset the failed keys and requested keys.

Implementation

void init() {
  failedKeys = [];
  requestedKeys = [];
}