remove static method

void remove(
  1. dynamic key
)

key — A string key that references a cached file.

Remove the cached file associated with the key.

Implementation

static void remove(key) {
  files.remove(key);
}