size property

int get size

Get marker count.

Returns

  • Collection size

Implementation

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

  return resultString['result'];
}