landmarks property
Collection of landmark stores to monitor for proximity alarms.
Add LandmarkStore instances to this collection to enable proximity alarms for the landmarks they contain. Multiple stores can be monitored simultaneously.
Returns
- LandmarkStoreCollection: The collection managing monitored landmark stores.
Implementation
LandmarkStoreCollection get landmarks {
final OperationResult result = objectMethod(
_pointerId,
'AlarmService',
'lmks',
);
return LandmarkStoreCollection.init(result['result'], -1);
}