getStoreIdAt method

int getStoreIdAt(
  1. int index
)

Get the store ID for the specified index.

Parameters

  • IN index The index should be less than the value provided by size.

Returns

Throws

  • An exception if it fails.

Implementation

int getStoreIdAt(final int index) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStoreCollection',
    'getStoreIdAt',
    args: index,
  );

  return resultString['result'];
}