notifyActivate method
void
notifyActivate()
Notifies all hooks that the widget has been activated.
Implementation
@pragma('vm:prefer-inline')
@pragma('wasm:prefer-inline')
@pragma('dart2js:prefer-inline')
void notifyActivate() {
for (var hook in _hooks) {
hook.activate();
}
}