denyConversation method
Implementation
@override
Future<bool> denyConversation(String topic) async {
try {
final params = <String, dynamic>{
'topic': topic,
}.jsify() as JSObject;
await _promiseToFuture(
_clientManager.denyConversation(params),
);
return true;
} catch (e) {
throw Exception('Failed to deny conversation: $e');
}
}