PerformanceStep constructor

PerformanceStep({
  1. required DateTime timestamp,
  2. String? name,
  3. int? elapsedMs,
  4. String? debug,
})

Implementation

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