splitAsCommandLineArgs function

List<String> splitAsCommandLineArgs(
  1. String command
)

Implementation

List<String> splitAsCommandLineArgs(String command) {
  return shlex.split(command);
}