getStoreIdAt method
- 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
- On success, returns the store ID greater than 0
- GemError.outOfRange.code if index is invalid
Throws
- An exception if it fails.
Implementation
int getStoreIdAt(final int index) {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkStoreCollection',
'getStoreIdAt',
args: index,
);
return resultString['result'];
}