deleteSvixApp method
Delete a Svix app
Delete a Svix app and disassociate it from the current instance
Implementation
Future<void> deleteSvixApp() async {
final response = await deleteSvixAppWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}