exitedSpeedSectionAlarms property
Speed section control alarms that were exited.
Returns
List<SpeedSectionAlarm>: The exited section-control alarms. Guaranteed not empty when read from the AlarmListener.registerOnExitSpeedSectionAlarms notification.
Implementation
List<SpeedSectionAlarm> get exitedSpeedSectionAlarms {
final OperationResult result = objectMethod(
_pointerId,
'AlarmService',
'getExitedSpeedSectionAlarms',
);
final List<dynamic> json = result['result'];
return json.map((dynamic e) => SpeedSectionAlarm.fromJson(e)).toList();
}