deletePermanently method
Implementation
Future<void> deletePermanently(String uuid, String type) async {
await cache.clearParentCache(uuid, type, api, crypto, masterKeys);
final endpoint = type == 'folder'
? '/v3/dir/delete/permanent'
: '/v3/file/delete/permanent';
await api.post(endpoint, {'uuid': uuid});
}