renameFile method

Future<String?> renameFile(
  1. String oldPathName,
  2. String newName
)

Implementation

Future<String?> renameFile(String oldPathName, String newName) =>
    _channel.invokeMethod("Backendless.Files.renameFile",
        <String, dynamic>{"oldPathName": oldPathName, "newName": newName});