deleteMulticastGroup method
Deletes a multicast group if it is not in use by a FUOTA task.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<void> deleteMulticastGroup({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/multicast-groups/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
}