unmount method
Removes this element from the tree.
Implementation
@override
void unmount() {
for (final row in cellElements) {
for (final el in row) {
el?.unmount();
}
}
cellElements.clear();
super.unmount();
}
Removes this element from the tree.
@override
void unmount() {
for (final row in cellElements) {
for (final el in row) {
el?.unmount();
}
}
cellElements.clear();
super.unmount();
}