public JSONObject toJSONObject()

in src/android/FileProgressResult.java [57:62]


    public JSONObject toJSONObject() throws JSONException {
        return new JSONObject(
                "{loaded:" + loaded +
                ",total:" + total +
                ",lengthComputable:" + (lengthComputable ? "true" : "false") + "}");
    }