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