commandLine property
Human-readable shell command for diagnostics and example UIs.
Implementation
String get commandLine {
if (arguments.isEmpty) {
return shell;
}
return '$shell ${arguments.join(' ')}';
}
Human-readable shell command for diagnostics and example UIs.
String get commandLine {
if (arguments.isEmpty) {
return shell;
}
return '$shell ${arguments.join(' ')}';
}