notifyDeactivate method

void notifyDeactivate()

Notifies all hooks that the widget has been deactivated.

Implementation

@pragma('vm:prefer-inline')
@pragma('wasm:prefer-inline')
@pragma('dart2js:prefer-inline')
void notifyDeactivate() {
  for (var hook in _hooks.reversed) {
    hook.deactivate();
  }
}