change method

Future<void> change(
  1. String newPath
)

Change the current working directory to a new path.

Implementation

Future<void> change(String newPath) async =>
    await changeWorkingDirectory(newPath.replaceSeparator());