removeChild method

Tag removeChild(
  1. Tag child
)

Implementation

Tag removeChild(Tag child) {
  children.remove(child);
  return this;
}