RuleExecution constructor
const
RuleExecution({
- required String ruleKey,
- required String ruleName,
- required RulesExecutionStatus status,
- DateTime? startTime,
- DateTime? endTime,
- RulesExecutionResult? result,
- String? error,
Implementation
const RuleExecution({
required this.ruleKey,
required this.ruleName,
required this.status,
this.startTime,
this.endTime,
this.result,
this.error,
});