joinCommandLine function

String joinCommandLine(
  1. List<String> command
)

Makes a command line string from List of String (arg list).

Implementation

String joinCommandLine(List<String> command) {
  return command.join(' ');
}