NiceBenchmarkRunner constructor

NiceBenchmarkRunner({
  1. int warmupRuns = 5,
  2. int measureRuns = 20,
  3. void onProgress(
    1. int current,
    2. int total
    )?,
})

Implementation

NiceBenchmarkRunner({
  this.warmupRuns = 5,
  this.measureRuns = 20,
  this.onProgress,
});