onMounted function

void onMounted(
  1. void hook()
)

Called after the component is mounted to the DOM

Implementation

void onMounted(void Function() hook) {
  _registerHook(Lifecycle.mounted, hook);
}