ProcessResultfinal

使用 Process.runProcess.runSync 启动的非交互式进程的结果。

构造函数

ProcessResult(int pid, int exitCode, dynamic stdout, dynamic stderr)

属性

exitCode int
进程的退出代码。
final
hashCode int
该对象的哈希码。
无设置器继承
pid int
进程的进程 ID。
final
runtimeType Type
对象运行时类型的表示。
无设置器继承
stderr → dynamic
进程的标准错误。用于 Process.runstderrEncoding 参数的值确定类型。如果使用 null,则此值为 List<int> 类型,否则为 String 类型。
final
stdout → dynamic
进程的标准输出。用于 Process.runstdoutEncoding 参数的值确定类型。如果使用 null,则此值为 List<int> 类型,否则为 String 类型。
final

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时被调用。
继承
toString() String
该对象的字符串表示。
继承

操作符

operator ==(Object other) bool
相等操作符。
继承