clear method

void clear(
  1. String file
)

Removes the file from the cache.

Implementation

void clear(String file) {
  _files.remove(file);
}