startChannel method
Starts a channel. For information about MediaTailor channels, see Working with channels in the MediaTailor User Guide.
Parameter channelName :
The name of the channel.
Implementation
Future<void> startChannel({
required String channelName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'PUT',
requestUri: '/channel/${Uri.encodeComponent(channelName)}/start',
exceptionFnMap: _exceptionFns,
);
}