stderrAsString property

String get stderrAsString

Err as string

Implementation

String get stderrAsString {
  var text = _outputAsText(stderr, _shell.options.stderrEncoding);
  if (text != null) {
    return text;
  }
  throw ArgumentError('Unsupported stderr type: ${stderr.runtimeType}');
}