id property

int get id

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

Returns

  • The content store item id

Implementation

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

  return resultString['result'];
}