id property

int get id

Get the ID of the landmark store.

Returns

  • The landmark store ID

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}