deleteAllWebhooks method
Implementation
Future<void> deleteAllWebhooks({ DateTime? before, }) async {
final response = await deleteAllWebhooksWithHttpInfo( before: before, );
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}