size property

int get size

Returns the number of stores in the collection.

Returns

  • int: Count of stores contained in this collection.

Implementation

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

  return resultString['result'];
}