containsLandmarkStore method
- LandmarkStore lms
Returns whether the provided lms has any enabled category in this collection.
Parameters
lms: The LandmarkStore to query.
Returns
- bool:
trueiflmshas 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'];
}