RuleChain constructor

RuleChain({
  1. required String name,
  2. required RuleChainType type,
  3. required RuleNodeId firstRuleNodeId,
  4. bool root = false,
  5. bool debugMode = false,
  6. TenantId? tenantId,
  7. Map<String, dynamic>? configuration,
})

Implementation

RuleChain(
    {required this.name,
    required this.type,
    required this.firstRuleNodeId,
    this.root = false,
    this.debugMode = false,
    this.tenantId,
    this.configuration});