stdout property

Stdout? get stdout

How stdout of the spawned process should be handled.

Defaults to "piped" for output & outputSync, and "inherit" for spawn.

Implementation

_i4.Stdout? get stdout => switch (_i3.getProperty(
      this,
      'stdout',
    )) {
      _i2.String name => _i4.Stdout.values.byName(name),
      _ => null
    };
set stdout (Stdout? value)

Implementation

set stdout(_i4.Stdout? value) {
  _i3.setProperty(
    this,
    'stdout',
    value?.name ?? _i6.undefined,
  );
}