muteChat method

Future<void> muteChat()

Mutes a Chat-dialog with the user.

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;
    }
  }
}