willUnmount method

  1. @override
void willUnmount()
override

Called before the component is removed from the tree.

Implementation

@override
void willUnmount() {
  _timer?.cancel();
  super.willUnmount();
}