removeAt method
Remove the child node at the index
Implementation
IndexedNode removeAt(int index) {
final node = children.removeAt(index);
return node;
}
Remove the child node at the index
IndexedNode removeAt(int index) {
final node = children.removeAt(index);
return node;
}