TimeTravelEvent constructor

TimeTravelEvent({
  1. required int version,
  2. required DateTime timestamp,
  3. required TimeTravelEventType type,
  4. String? key,
  5. dynamic oldValue,
  6. dynamic newValue,
})

Create a time travel event.

Implementation

TimeTravelEvent({
  required this.version,
  required this.timestamp,
  required this.type,
  this.key,
  this.oldValue,
  this.newValue,
});