id property

int get id

The unique identifier for this marker.

Returns

  • An integer id assigned by the underlying engine.

Implementation

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

  return resultString['result'];
}