ProgramRenderCaptureReport constructor

const ProgramRenderCaptureReport({
  1. required String prefix,
  2. required Map<String, String> metricEntries,
  3. required int? lastRenderGeneration,
  4. required int? lastWidth,
  5. required int? lastHeight,
  6. required List<String> frameLines,
  7. ProgramRenderChangeSummary? lastChangeSummary,
})

Creates a capture report.

Implementation

const ProgramRenderCaptureReport({
  required this.prefix,
  required this.metricEntries,
  required this.lastRenderGeneration,
  required this.lastWidth,
  required this.lastHeight,
  required this.frameLines,
  this.lastChangeSummary,
});