delete<T> static method

bool delete<T>({
  1. String? tag,
  2. bool force = false,
})

Delete a dependency from root scope

Implementation

static bool delete<T>({String? tag, bool force = false}) {
  return rootScope.delete<T>(tag: tag, force: force);
}