moveFile method

Future<String?> moveFile(
  1. String sourcePathName,
  2. String targetPath
)

Implementation

Future<String?> moveFile(String sourcePathName, String targetPath) =>
    _channel.invokeMethod("Backendless.Files.moveFile", <String, dynamic>{
      "sourcePathName": sourcePathName,
      "targetPath": targetPath
    });