move method

Future<void> move(
  1. String sourcePath,
  2. String destinationPath, {
  3. bool overwrite = false,
})

Implementation

Future<void> move(String sourcePath, String destinationPath, {bool overwrite = false}) async {
  await _invoke("move", {"source_path": sourcePath, "destination_path": destinationPath, "overwrite": overwrite});
}