deleteSchedule method
Delete all schedule actions on a channel.
May throw BadGatewayException.
May throw BadRequestException.
May throw ForbiddenException.
May throw GatewayTimeoutException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter channelId :
Id of the channel whose schedule is being deleted.
Implementation
Future<void> deleteSchedule({
required String channelId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/prod/channels/${Uri.encodeComponent(channelId)}/schedule',
exceptionFnMap: _exceptionFns,
);
}