landmarkAlarmsPassedOver property
Landmark alarms that have been passed over.
Returns the list of landmarks that were recently passed by the device. Items in this list do not have a predefined sort order. To identify the most recently passed landmark, compare with previous snapshots of this list.
Returns
- LandmarkAlarmsList: List of passed-over landmark alarms.
Implementation
LandmarkAlarmsList get landmarkAlarmsPassedOver {
final OperationResult result = objectMethod(
_pointerId,
'AlarmService',
'getLandmarkAlarmsPassedOver',
);
return LandmarkAlarmsList.init(result['result']);
}