muteChat method

Future<void> muteChat(
  1. ChatId id
)

Mutes a Chat identified by the provided id.

Implementation

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