move method
Moves the file from one path to another.
Implementation
@override
Future<void> move(String from, String to) async {
final src = _file(from);
final dst = _file(to);
await dst.create(recursive: true);
await src.rename(dst.path);
}
Moves the file from one path to another.
@override
Future<void> move(String from, String to) async {
final src = _file(from);
final dst = _file(to);
await dst.create(recursive: true);
await src.rename(dst.path);
}