Dart API Referencedart:ioProcessResult

ProcessResult Interface

ProcessResult represents the result of running a non-interactive process started with Process.run.

Methods

Code int get exitCode() #

Exit code for the process.

int get exitCode();

Code String get stderr() #

Standard error from the process as a string.

String get stderr();

Code String get stdout() #

Standard output from the process as a string.

String get stdout();