isSpeedSectionAlarmEnabled property

bool get isSpeedSectionAlarmEnabled

Whether the speed section control alarms are enabled.

Disabled by default.

Returns

  • bool: True when the section-control alarms are enabled.

Implementation

bool get isSpeedSectionAlarmEnabled {
  final OperationResult result = objectMethod(
    _pointerId,
    'AlarmService',
    'isSpeedSectionAlarmEnabled',
  );

  return result['result'];
}