makeActive method
void
makeActive()
Implementation
void makeActive() {
if (hasParent) {
parent!.activateChild(this);
parent!.makeActive();
}
}
void makeActive() {
if (hasParent) {
parent!.activateChild(this);
parent!.makeActive();
}
}