ReplicationEvent constructor

const ReplicationEvent({
  1. required ReplicationEventType type,
  2. required String sourceNodeId,
  3. String? key,
  4. dynamic value,
  5. required DateTime timestamp,
})

Creates a ReplicationEvent.

Implementation

const ReplicationEvent({
  required this.type,
  required this.sourceNodeId,
  this.key,
  this.value,
  required this.timestamp,
});