RuleExecution constructor

const RuleExecution({
  1. required String ruleKey,
  2. required String ruleName,
  3. required RulesExecutionStatus status,
  4. DateTime? startTime,
  5. DateTime? endTime,
  6. RulesExecutionResult? result,
  7. String? error,
})

Implementation

const RuleExecution({
  required this.ruleKey,
  required this.ruleName,
  required this.status,
  this.startTime,
  this.endTime,
  this.result,
  this.error,
});