BenchmarkComparison constructor

BenchmarkComparison({
  1. required List<BenchmarkResult> syncResults,
  2. required List<BenchmarkResult> asyncResults,
  3. required int valueSize,
  4. required int iterations,
})

Implementation

BenchmarkComparison({
  required this.syncResults,
  required this.asyncResults,
  required this.valueSize,
  required this.iterations,
});