deleteChannelPolicy method
The channel policy to delete.
Parameter channelName :
The name of the channel associated with this channel policy.
Implementation
Future<void> deleteChannelPolicy({
required String channelName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/channel/${Uri.encodeComponent(channelName)}/policy',
exceptionFnMap: _exceptionFns,
);
}