removeAll method

void removeAll()

delete all providers from the ProviderScope

Implementation

void removeAll() {
  for (final container in containers.values) {
    container.reference.dispose();
  }
  containers.clear();
}