containsLandmarkStore method

bool containsLandmarkStore(
  1. LandmarkStore lms
)

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

Parameters

  • IN lms The store

Returns

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

Throws

  • An exception if it fails.

Implementation

bool containsLandmarkStore(final LandmarkStore lms) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStoreCollection',
    'containsLandmarkStore',
    args: lms.pointerId,
  );

  return resultString['result'];
}