remove<T> method

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

Remove a service in the current scope

Implementation

bool remove<T>({String? tag}) {
  return current.remove<T>(tag: tag);
}