size property

int get size

Get collection size.

Returns

  • The number of collections

Implementation

int get size {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewMarkerCollections',
    'size',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}