cleanup method
void
cleanup()
Implementation
void cleanup() {
// Clean up stream subscriptions when strategy is disposed
for (final subscription in _streamSubscriptions) {
subscription.cancel();
}
_streamSubscriptions.clear();
print('🧹 QA Strategy: All stream subscriptions cancelled');
}