ActionRunInfo constructor

ActionRunInfo({
  1. required String name,
  2. DateTime? startTime,
  3. Derivation? prevDerivation,
  4. bool prevAllowStateChanges = true,
})

Implementation

ActionRunInfo({
  required this.name,
  this.startTime,
  this.prevDerivation,
  this.prevAllowStateChanges = true,
});