onContextChanged method
Called when the debugging context changes (e.g., when switching controllers) Subclasses can override this to reinitialize their state
Implementation
@override
void onContextChanged() {
super.onContextChanged();
// Reinitialize Dio interceptor when context changes
_maybeRegisterDioInterceptor();
}