PerformanceTransaction constructor

PerformanceTransaction({
  1. required String name,
  2. String? description,
  3. required DateTime startTime,
  4. required int startNanoTime,
  5. int? autofinishWithStepsCount,
})

Implementation

PerformanceTransaction({
  required this.name,
  this.description,
  required this.startTime,
  required this.startNanoTime,
  this.autofinishWithStepsCount,
});