deleteApiKey abstract method
- @DELETE.new('/api/client/account/api-keys/{apiKeyId}')
- @Path.new() required String apiKeyId,
- @CancelRequest.new() CancelToken? cancelToken,
- @SendProgress.new() @experimental ProgressCallback? onSendProgress,
- @ReceiveProgress.new() @experimental ProgressCallback? onReceiveProgress,
Delete an ApiKey on your account.
Implementation
@DELETE('/api/client/account/api-keys/{apiKeyId}')
Future<void> deleteApiKey({
@Path() required String apiKeyId,
@CancelRequest() CancelToken? cancelToken,
@SendProgress() @experimental ProgressCallback? onSendProgress,
@ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
});