onBeforeUpdate function

void onBeforeUpdate(
  1. void hook()
)

Called before the component is updated

Implementation

void onBeforeUpdate(void Function() hook) {
  _registerHook(Lifecycle.beforeUpdate, hook);
}