deleteApplication method

Future<void> deleteApplication({
  1. required String applicationId,
})

Deletes an application.

May throw BadRequestException. May throw InternalServerException. May throw ResourceNotFoundException.

Parameter applicationId : The ID of the application to delete.

Implementation

Future<void> deleteApplication({
  required String applicationId,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/applications/${Uri.encodeComponent(applicationId)}',
    exceptionFnMap: _exceptionFns,
  );
}