id property

int get id

Get collection id.

Returns

  • collection id

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}