containsStoreId method

bool containsStoreId(
  1. int storeId
)

Check if the specified store ID has any category in the list.

Parameters

  • IN storeId The store ID

Returns

  • True if the store has any category in the list, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool containsStoreId(final int storeId) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStoreCollection',
    'containsStoreId',
    args: storeId,
  );

  return resultString['result'];
}