id property

int get id

Get the ID of the landmark store.

Returns

  • The landmark store ID

Implementation

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

  return resultString['result'];
}