RuleNode constructor

RuleNode({
  1. required String type,
  2. required String name,
  3. bool debugMode = false,
  4. RuleChainId? ruleChainId,
  5. bool? singletonMode,
  6. int? configurationVersion,
  7. Map<String, dynamic>? configuration,
})

Implementation

RuleNode(
    {required this.type,
    required this.name,
    this.debugMode = false,
    this.ruleChainId,
    this.singletonMode,
    this.configurationVersion,
    this.configuration});