removeRecursive method
inherited
Implementation
void removeRecursive() {
assert(context != null);
Set<Component> deathRow = {this};
forEachChild((child) => deathRow.add(child));
deathRow.forEach(context.removeObject);
}
void removeRecursive() {
assert(context != null);
Set<Component> deathRow = {this};
forEachChild((child) => deathRow.add(child));
deathRow.forEach(context.removeObject);
}