stdoutAsUint8List property

Uint8List get stdoutAsUint8List

Out as bytes

Implementation

Uint8List get stdoutAsUint8List {
  var bytes = _outputAsUint8List(stdout, _shell.options.stdoutEncoding);
  if (bytes != null) {
    return bytes;
  }
  throw ArgumentError('Unsupported stdout type: ${stdout.runtimeType}');
}