remove method

void remove(
  1. String functionId
)

Removes a function from the cache.

Implementation

void remove(String functionId) {
  _cache.remove(functionId);
}