ProgramRenderSnapshotSummary constructor

const ProgramRenderSnapshotSummary({
  1. required int sequence,
  2. required int renderGeneration,
  3. required DegradationLevel degradationLevel,
  4. required Duration renderDuration,
  5. required int? width,
  6. required int? height,
  7. required List<String> frameLines,
  8. required ProgramRenderChangeSummary changeSummary,
})

Creates a snapshot summary.

Implementation

const ProgramRenderSnapshotSummary({
  required this.sequence,
  required this.renderGeneration,
  required this.degradationLevel,
  required this.renderDuration,
  required this.width,
  required this.height,
  required this.frameLines,
  required this.changeSummary,
});