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.

Implementation

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

  return resultString['result'];
}