copyFile method

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

Implementation

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