PatchbayLogTailRequestWire constructor

const PatchbayLogTailRequestWire({
  1. required String? cursor,
  2. required int? limit,
  3. required int? timeoutMs,
  4. required List<PatchbayLogLevelWire> levels,
  5. required List<String> categories,
})

Creates a fully validated wire value.

Implementation

const PatchbayLogTailRequestWire({
  required this.cursor,
  required this.limit,
  required this.timeoutMs,
  required this.levels,
  required this.categories,
});