PatchbayInvocationCancellationResult constructor

const PatchbayInvocationCancellationResult({
  1. required String command,
  2. required String requestId,
  3. required PatchbayInvocationCancellationOutcome outcome,
  4. PatchbayInvocationCancellationReason? reason,
  5. PatchbayInvocationConfirmationState? confirmation,
})

Implementation

const PatchbayInvocationCancellationResult({
  required this.command,
  required this.requestId,
  required this.outcome,
  this.reason,
  this.confirmation,
});