public void reportScreenshot()

in src/main/java/com/microsoft/appcenter/event/EventReporter.java [71:79]


    public void reportScreenshot(String screenshotPath, int screenshotOrientation, boolean screenshotRotated) {
        try {
            String parameters = getParameters(lastDescription);
            Event event = Event.createScreenshot(screenshotId(lastDescription, parameters), lastDescription.getMethodName(), lastDescription.getClassName(), parameters);
            commit(event);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }