diff --git a/bindings/dart/lib/src/rust/api/opendal_api.dart b/bindings/dart/lib/src/rust/api/opendal_api.dart index a433bbf032c..4e4b3510e72 100644 --- a/bindings/dart/lib/src/rust/api/opendal_api.dart +++ b/bindings/dart/lib/src/rust/api/opendal_api.dart @@ -168,14 +168,6 @@ abstract class Operator implements RustOpaqueInterface { Future rename({required String from, required String to}); - /// Rename file according to given `from` and `to` path synchronously. - /// - /// It's similar to `mv` command. - /// - /// ### Example - /// ```javascript - /// op.renameSync("path/to/file", "path/to/dest"); - /// ``` void renameSync({required String from, required String to}); Future stat({required String path});