RecomputeReason constructor

RecomputeReason({
  1. required Atom atom,
  2. required List<Atom> changedDependencies,
  3. required Duration duration,
  4. required dynamic newValue,
  5. dynamic oldValue,
})

Implementation

RecomputeReason({
  required this.atom,
  required this.changedDependencies,
  required this.duration,
  required this.newValue,
  this.oldValue,
});