deleteAllInboxesByTag method
Implementation
Future<void> deleteAllInboxesByTag(String tag,) async {
final response = await deleteAllInboxesByTagWithHttpInfo(tag,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}