getSharedFileById method
Implementation
@override
Future<String> getSharedFileById(
{required String fileId, required String localPath}) async {
_checkAuth();
var folderInfo = await _findOrJoinSharedFolder(fileId);
final remoteFilePath = "${folderInfo['path_lower']}/sync_file.json";
debugPrint("Downloading from resolved remote path: $remoteFilePath");
return downloadFile(remotePath: remoteFilePath, localPath: localPath);
}