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