Remove an item
bool remove(Widget? item) { bool remove = item != null; if (remove) { remove = _children.remove(item); } return remove; }