ruleManager property

RuleManager get ruleManager

Get the rule manager

Implementation

static RuleManager get ruleManager {
  if (_ruleManager == null) {
    throw StateError(
      'Interceptify not initialized. Call Interceptify.initialize() first.',
    );
  }
  return _ruleManager!;
}