deleteAllInboxesByDescription method
Delete inboxes by description
Permanently delete all inboxes by description
Parameters:
- String description (required):
Implementation
Future<void> deleteAllInboxesByDescription(String description,) async {
final response = await deleteAllInboxesByDescriptionWithHttpInfo(description,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}