deletePlaybackConfiguration method
Deletes the playback configuration for the specified name.
Parameter name
:
The identifier for the playback configuration.
Implementation
Future<void> deletePlaybackConfiguration({
required String name,
}) async {
ArgumentError.checkNotNull(name, 'name');
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/playbackConfiguration/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
}