unmute method

Future<void> unmute()

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

If success, Conversation.isMuted will be false.

Implementation

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