getOverSpeedThreshold method
- bool insideCityArea
Gets the configured overspeed threshold for high-speed alarms.
Parameters
insideCityArea:trueto retrieve the city area threshold,falsefor non-city.
Returns
double: Overspeed threshold in meters per second.
Implementation
double getOverSpeedThreshold(final bool insideCityArea) {
final OperationResult result = objectMethod(
_pointerId,
'AlarmService',
'getOverSpeedThreshold',
args: insideCityArea,
);
return result['result'];
}