remove<T> method

bool remove<T>({
  1. String? tag,
})

Remove a service

Implementation

bool remove<T>({String? tag}) {
  return _services.remove(_key(T, tag)) != null;
}