stderrAsUint8List property

Uint8List get stderrAsUint8List

Err as bytes

Implementation

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