deleteDiscoverer method
Deletes a discoverer.
May throw BadRequestException. May throw UnauthorizedException. May throw InternalServerErrorException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceUnavailableException.
Parameter discovererId
:
The ID of the discoverer.
Implementation
Future<void> deleteDiscoverer({
required String discovererId,
}) async {
ArgumentError.checkNotNull(discovererId, 'discovererId');
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/v1/discoverers/id/${Uri.encodeComponent(discovererId)}',
exceptionFnMap: _exceptionFns,
);
}