landmarks property

LandmarkStoreCollection get landmarks

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

Implementation

LandmarkStoreCollection get landmarks {
  final OperationResult result = objectMethod(
    _pointerId,
    'AlarmService',
    'lmks',
  );

  return LandmarkStoreCollection.init(result['result'], -1);
}