PatchbayCommandDescriptorWire constructor

const PatchbayCommandDescriptorWire({
  1. required String name,
  2. required String summary,
  3. required PatchbayPlaneWire plane,
  4. required PatchbayCommandModeWire mode,
  5. required PatchbaySideEffectWire sideEffect,
  6. required List<PatchbayFactSourceWire> factSources,
  7. required List<String> gates,
  8. required List<PatchbayParameterDescriptorWire> parameters,
})

Creates a fully validated wire value.

Implementation

const PatchbayCommandDescriptorWire({
  required this.name,
  required this.summary,
  required this.plane,
  required this.mode,
  required this.sideEffect,
  required this.factSources,
  required this.gates,
  required this.parameters,
});