muteChat method
Implementation
Future<void> muteChat() async {
final ChatId? dialog = user?.user.value.dialog;
if (dialog != null) {
try {
await _chatService.toggleChatMute(dialog, MuteDuration.forever());
} on ToggleChatMuteException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}
}