id property

int get id

Get the unique id of the item in the content store.

Returns

  • The content store item id

Throws

  • An exception if it fails.

Implementation

int get id {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ContentStoreItem',
    'getId',
  );

  return resultString['result'];
}