id property

int get id

Get marker unique id.

Returns

  • marker id

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}