unmuteChat method

Future<void> unmuteChat()

Unmutes a Chat-dialog with the user.

Implementation

Future<void> unmuteChat() async {
  final ChatId? dialog = user?.user.value.dialog;

  if (dialog != null) {
    try {
      await _chatService.toggleChatMute(dialog, null);
    } on ToggleChatMuteException catch (e) {
      MessagePopup.error(e);
    } catch (e) {
      MessagePopup.error(e);
      rethrow;
    }
  }
}