removeCompExact method

E removeCompExact(
  1. Comp<T> component
)

Removes the exact component.

Implementation

E removeCompExact(Comp<T> component) {
  if (!_components.any((c) => identical(c, component))) return self;
  _removeComponentInstance(component);
  return self;
}