void unsubscribeMany(List<String> topics) { if (_closed) throw Exception('Unsubscribe on closed Subscriber'); for (var topic in topics) { unsubscribe(topic); } }