toggleRuleStatus method

Future<bool> toggleRuleStatus(
  1. String ruleKey
)

Toggle rule active status (not supported by RulesManager yet)

Implementation

Future<bool> toggleRuleStatus(String ruleKey) async {
  ObslyLogger.warn(
      'Toggle rule status not supported - use remove/add instead');
  return false;
}