size property

int get size

Get the number of stores in the list.

Returns

  • The number of stores

Implementation

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

  return resultString['result'];
}