containsLandmarkStore method

bool containsLandmarkStore(
  1. LandmarkStore lms
)

Returns whether the provided lms has any enabled category in this collection.

Parameters

Returns

  • bool: true if lms has at least one category in the collection.

Implementation

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

  return resultString['result'];
}