dispose method
disposes of the model releasing resources and removing bindings
Implementation
@override
void dispose() {
// dispose of tip model
tipModel?.dispose();
// dispose of animations
animations?.forEach((animation) => animation.dispose());
// dispose
super.dispose();
}