TimeTravelEvent constructor
TimeTravelEvent({
- required int version,
- required DateTime timestamp,
- required TimeTravelEventType type,
- String? key,
- dynamic oldValue,
- dynamic newValue,
Create a time travel event.
Implementation
TimeTravelEvent({
required this.version,
required this.timestamp,
required this.type,
this.key,
this.oldValue,
this.newValue,
});