PatchbaySnapshotRequestWire constructor

const PatchbaySnapshotRequestWire({
  1. required String path,
  2. required PatchbaySnapshotConditionWire? until,
  3. required Object? value,
  4. required int? timeoutMs,
})

Creates a fully validated wire value.

Implementation

const PatchbaySnapshotRequestWire({
  required this.path,
  required this.until,
  required this.value,
  required this.timeoutMs,
});