commandLine property

String get commandLine

Human-readable shell command for diagnostics and example UIs.

Implementation

String get commandLine {
  if (arguments.isEmpty) {
    return shell;
  }
  return '$shell ${arguments.join(' ')}';
}