muteChat method

Future<void> muteChat()

Mutes the chat.

Implementation

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