PatchbaySnapshotSelectionWire constructor

const PatchbaySnapshotSelectionWire({
  1. required String path,
  2. required bool found,
  3. required Object? value,
  4. required PatchbaySnapshotMissWire? miss,
})

Creates a fully validated wire value.

Implementation

const PatchbaySnapshotSelectionWire({
  required this.path,
  required this.found,
  required this.value,
  required this.miss,
});