CommandEvent constructor

const CommandEvent({
  1. required String eventId,
  2. required String commandId,
  3. required CommandEventKind kind,
  4. required int generation,
  5. String? detail,
})

Implementation

const CommandEvent({
  required this.eventId,
  required this.commandId,
  required this.kind,
  required this.generation,
  this.detail,
});