Why is this code not returning any results?
Process.run('java', ['-mx300m -classpath stanford-postagger/stanford-postagger.jar edu.stanford.nlp.tagger.maxent.MaxentTagger -model stanford-postagger/models/wsj-0-18-bidirectional-nodistsim.tagger -textFile stanford-postagger/sample-input.txt']).then((ProcessResult results) {
print(results.stdout);
});
I get no error when the code is executed either.