decreaseReferencesInScope method

void decreaseReferencesInScope(
  1. String scope,
  2. Type type, {
  3. int index = 0,
})

Decreases reference count in given scope for given type

Implementation

void decreaseReferencesInScope(String scope, Type type, {int index = 0}) {
  container.decreaseReferences(scope, type, index: index);
}