getOutput method
This returns the stdout as a list. Empty strings at the end are removed. For a string version see getStringOutput
Implementation
List getOutput() {
final List<dynamic> ret = [];
for (String element in _output) {
if (element.isNotEmpty) {
ret.add(element);
}
}
return ret;
}