ReplayTraceConversionResult constructor

const ReplayTraceConversionResult({
  1. required String tracePath,
  2. required ReplayScenario scenario,
  3. required int eventCount,
  4. required int actionCount,
  5. required int skippedCount,
  6. required int inferredScreenWidth,
  7. required int inferredScreenHeight,
})

Implementation

const ReplayTraceConversionResult({
  required this.tracePath,
  required this.scenario,
  required this.eventCount,
  required this.actionCount,
  required this.skippedCount,
  required this.inferredScreenWidth,
  required this.inferredScreenHeight,
});