unmuteChat method

Future<void> unmuteChat(
  1. ChatId id
)

Unmutes a Chat identified by the provided id.

Implementation

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