mute method

Future<void> mute()

To turn off the offline notifications for Conversation.client about this Conversation.

If success, Conversation.isMuted will be true.

Implementation

Future<void> mute() async {
  await _muteToggle(op: 'mute');
}