monitorWithoutRoute property
Gets the status of the "alarming without route" flag.
Returns
- True if monitoring without route is enabled, false otherwise.
Throws
- An exception if it fails.
Implementation
bool get monitorWithoutRoute {
final OperationResult result = objectMethod(
_pointerId,
'AlarmService',
'getMonitorWithoutRoute',
);
return result['result'];
}
Select if alarms should be provided when navigating without route.
Parameters
- IN value Enable or disable monitoring without route.
Throws
- An exception if it fails.
Implementation
set monitorWithoutRoute(final bool value) {
objectMethod(
_pointerId,
'AlarmService',
'setMonitorWithoutRoute',
args: value,
);
}