moveItem method
Implementation
Future<void> moveItem(String uuid, String destUuid, String type) async {
await cache.clearParentCache(uuid, type, api, crypto, masterKeys);
final endpoint = type == 'folder' ? '/v3/dir/move' : '/v3/file/move';
await api.post(endpoint, {'uuid': uuid, 'to': destUuid});
cache.invalidate(destUuid);
cache.clearPathCache();
}