Performance constructor

Performance({
  1. required DateTime timestamp,
  2. String? name,
  3. int? elapsedMs,
  4. String? debug,
  5. List<PerformanceStep>? steps,
})

Implementation

Performance({
  required this.timestamp,
  this.name,
  this.elapsedMs,
  this.debug,
  this.steps,
});