deleteAllSentEmails method
Delete all sent email receipts
Implementation
Future<void> deleteAllSentEmails() async {
final response = await deleteAllSentEmailsWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}