unmuteChat method
Unmutes the chat.
Implementation
Future<void> unmuteChat() async {
try {
await _chatService.toggleChatMute(chat?.id ?? chatId, null);
} on ToggleChatMuteException catch (e) {
MessagePopup.error(e);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}