undefine<O> method

void undefine<O>(
  1. String key
)

Remove instantiator and cache-validator for key.

Implementation

void undefine<O>(String key) {
  _cacheInstantiators.remove(key);
  _cacheValidators.remove(key);
}