PatchbayParameterDescriptorWire constructor

const PatchbayParameterDescriptorWire({
  1. required String name,
  2. required PatchbayParameterTypeWire type,
  3. required bool required,
  4. required bool sensitive,
  5. required Object? defaultValue,
  6. required List<Object?> allowedValues,
  7. required String? summary,
})

Creates a fully validated wire value.

Implementation

const PatchbayParameterDescriptorWire({
  required this.name,
  required this.type,
  required this.required,
  required this.sensitive,
  required this.defaultValue,
  required this.allowedValues,
  required this.summary,
});