stdout property

String stdout

Returns a lazily-decoded version of the data in stdoutRaw, decoded using decoder.

Implementation

String get stdout {
  _stdout ??= decoder.decode(stdoutRaw);
  return _stdout!;
}