1. override
void removeChild(Bitmap child)

Source

@override
void removeChild(Bitmap child) {
  if (child.parent != this) {
    throw new ArgumentError("The supplied Bitmap must be a child of the caller.");
  } else {
    int index = _children.indexOf(child);
    child._parent = null;
    _children.removeAt(index);
  }
}