PlaybackReport constructor

PlaybackReport({
  1. required ReplayReportInfo basicInfo,
  2. List<int>? log,
  3. required List<CheckpointMatchError> matchErrors,
})

Implementation

PlaybackReport({
  required this.basicInfo,
  this.log,
  required this.matchErrors,
});