unmute method

Future<EmptyResponse> unmute()

Unmute the channel.

Implementation

Future<EmptyResponse> unmute() {
  _checkInitialized();

  // Cancel the mute expiration timer if it is set.
  _muteExpirationTimer?.cancel();
  _muteExpirationTimer = null;

  return _client.unmuteChannel(cid!);
}