dispose method
disposes of the model releasing resources and removing bindings
Implementation
@override
dispose() {
super.dispose();
// dispose of cells
for (var cell in cells) {
cell.dispose();
}
}
disposes of the model releasing resources and removing bindings
@override
dispose() {
super.dispose();
// dispose of cells
for (var cell in cells) {
cell.dispose();
}
}