onUnmounted function

void onUnmounted(
  1. void hook()
)

Called after the component is unmounted from the DOM

Implementation

void onUnmounted(void Function() hook) {
  _registerHook(Lifecycle.unmounted, hook);
}