id property

int get id

The unique identifier assigned to this collection.

Returns

  • An integer id.

Implementation

int get id {
  final OperationResult resultString = objectMethod(
    pointerId,
    'MarkerCollection',
    'getId',
  );

  return resultString['result'];
}