onMount method
Called when the component is mounted/hydrated in the browser.
Override this method to add interactivity to your component.
Implementation
@override
void onMount() {
super.onMount();
update();
}
Called when the component is mounted/hydrated in the browser.
Override this method to add interactivity to your component.
@override
void onMount() {
super.onMount();
update();
}