PatchbayJobEventWire constructor

const PatchbayJobEventWire({
  1. required int sequence,
  2. required String at,
  3. required PatchbayJobPhaseWire phase,
  4. required PatchbayFactSourceWire source,
  5. required String? operation,
  6. required Map<String, Object?> payload,
  7. required String? reason,
})

Creates a fully validated wire value.

Implementation

const PatchbayJobEventWire({
  required this.sequence,
  required this.at,
  required this.phase,
  required this.source,
  required this.operation,
  required this.payload,
  required this.reason,
});