HistoryEventDTO constructor

HistoryEventDTO({
  1. EventMetadata? metadata,
  2. List<ChangeDTO> changes = const [],
})

Returns a new HistoryEventDTO instance.

Implementation

HistoryEventDTO({
  this.metadata,
  this.changes = const [],
});