cleanupQAServiceLocator function
void
cleanupQAServiceLocator()
Clean up the service locator
Implementation
void cleanupQAServiceLocator() {
if (getIt.isRegistered<QAMessageService>()) {
getIt.unregister<QAMessageService>();
print('🧹 QA Service Locator: QAMessageService unregistered');
}
}