SyncFolderHierarchy method
Future<ChangeCollection<FolderChange> >
SyncFolderHierarchy(
- FolderId syncFolderId,
- PropertySet propertySet,
- String? syncState
Implementation
Future<ChangeCollection<FolderChange>> SyncFolderHierarchy(
FolderId syncFolderId, PropertySet propertySet, String? syncState) async {
final request = await this
.BuildSyncFolderHierarchyRequest(syncFolderId, propertySet, syncState);
final ServiceResponseCollection<SyncFolderHierarchyResponse> response =
await request.Execute();
return response[0].Changes;
}