size property

int get size

Get marker count.

Returns

  • Collection size

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}