ResolvedReplay constructor

const ResolvedReplay({
  1. required String path,
  2. required String name,
  3. required int actionCount,
  4. required bool loop,
  5. required bool keepOpen,
  6. required bool blockInput,
  7. required double speed,
  8. required ProgramReplay replay,
  9. required ProgramInterceptor interceptor,
  10. required bool convertOnly,
  11. ReplayTraceConversionResult? traceConversion,
})

Implementation

const ResolvedReplay({
  required this.path,
  required this.name,
  required this.actionCount,
  required this.loop,
  required this.keepOpen,
  required this.blockInput,
  required this.speed,
  required this.replay,
  required this.interceptor,
  required this.convertOnly,
  this.traceConversion,
});