unmute method

Future<EmptyResponse> unmute()

Unmute the channel.

Implementation

Future<EmptyResponse> unmute() {
  _checkInitialized();
  return _client.unmuteChannel(cid!);
}