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.

Implementation

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

  return resultString['result'];
}