remove method
void
remove(
- C child
Removes a child from the children list.
Implementation
void remove(C child) {
_children.remove(child);
child.parent = null;
markNeedsLayout();
}
Removes a child from the children list.
void remove(C child) {
_children.remove(child);
child.parent = null;
markNeedsLayout();
}