CommandProjectionEntry constructor

const CommandProjectionEntry({
  1. required String commandId,
  2. required CommandStatus status,
  3. required bool terminal,
  4. required int generation,
  5. String? reason,
  6. String? terminalReceiptId,
  7. String? lastEventId,
})

Implementation

const CommandProjectionEntry({
  required this.commandId,
  required this.status,
  required this.terminal,
  required this.generation,
  this.reason,
  this.terminalReceiptId,
  this.lastEventId,
});