BatchSample constructor

const BatchSample({
  1. required int id,
  2. required int depth,
  3. required int startedAt,
  4. required int endedAt,
  5. required int durationMs,
  6. required int writeCount,
})

Implementation

const BatchSample({
  required this.id,
  required this.depth,
  required this.startedAt,
  required this.endedAt,
  required this.durationMs,
  required this.writeCount,
});