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