CommandCancel constructor

const CommandCancel({
  1. required String commandId,
  2. required String causationId,
  3. required String source,
  4. required int authorityGeneration,
  5. String? reason,
})

Implementation

const CommandCancel({
  required this.commandId,
  required this.causationId,
  required this.source,
  required this.authorityGeneration,
  this.reason,
});