muteChat method
Mutes the chat.
Implementation
Future<void> muteChat() async {
try {
await _chatService.toggleChatMute(chat?.id ?? id, MuteDuration.forever());
} on ToggleChatMuteException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}