PatchbayLogBatchWire constructor

const PatchbayLogBatchWire({
  1. required PatchbayLogBatchOutcomeWire outcome,
  2. required PatchbayFactSourceWire source,
  3. required List<PatchbayLogRecordWire> records,
  4. required String? nextCursor,
  5. required String? currentCursor,
  6. required bool truncated,
  7. required PatchbayLogTruncationWire? truncation,
  8. required int elapsedMs,
})

Creates a fully validated wire value.

Implementation

const PatchbayLogBatchWire({
  required this.outcome,
  required this.source,
  required this.records,
  required this.nextCursor,
  required this.currentCursor,
  required this.truncated,
  required this.truncation,
  required this.elapsedMs,
});