deleteFile method
Deletes a file from the cloud storage.
Implementation
@override
Future<void> deleteFile(String path) async {
await client.deleteFile(path,
isAppFolder:
MultiCloudStorage.cloudAccess == CloudAccessType.appStorage);
}