output property

String output

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

Information appears in the order supplied by the process.

Implementation

String get output {
  _output ??= decoder.decode(outputRaw);
  return _output!;
}