removeComp<C extends Comp<T> > method
E
removeComp<C extends Comp<T> >()
Removes the first top-level component matching type C.
Implementation
E removeComp<C extends Comp<T>>() {
final c = get<C>();
if (c != null) _removeComponentInstance(c);
return self;
}