BenchmarkResult constructor

BenchmarkResult({
  1. required String name,
  2. required double avgMs,
  3. required double minMs,
  4. required double maxMs,
  5. required int iterations,
  6. required BenchmarkCategory category,
})

Implementation

BenchmarkResult({
  required this.name,
  required this.avgMs,
  required this.minMs,
  required this.maxMs,
  required this.iterations,
  required this.category,
});