folderId property

String folderId

The ID of the folder in which the owner has stored the item. The property is only returned to users who are the item's owner or the org admin.

A null folderID means either that the folderID is unknown to the user or the item is stored at the root folder of the user directory.

Implementation

String get folderId {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PortalItem_getFolderId(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}