remove method

Future remove(
  1. Node child
)

Implementation

Future remove(Node child) async {
  await child.walkDestroy();
  _children.remove(child);
}