removeSlotElement method
Implementation
void removeSlotElement(Object? slot) {
final element = this.element;
if (element == null) return;
elements.remove(slot)?.pipe(element.deactivateChild);
widgets.remove(slot);
}
void removeSlotElement(Object? slot) {
final element = this.element;
if (element == null) return;
elements.remove(slot)?.pipe(element.deactivateChild);
widgets.remove(slot);
}