ProgramRenderStats constructor
const
ProgramRenderStats({
- required int totalRenders,
- required int changedRenders,
- required int totalChangedCells,
- required int totalChangedSpans,
- required int maxDirtyLines,
- required int maxChangedCells,
- required int maxChangedSpans,
- required Duration totalRenderDuration,
- int? lastRenderGeneration,
- DegradationLevel? lastDegradationLevel,
- ProgramRenderChangeSummary? lastChangeSummary,
Creates render stats.
Implementation
const ProgramRenderStats({
required this.totalRenders,
required this.changedRenders,
required this.totalChangedCells,
required this.totalChangedSpans,
required this.maxDirtyLines,
required this.maxChangedCells,
required this.maxChangedSpans,
required this.totalRenderDuration,
this.lastRenderGeneration,
this.lastDegradationLevel,
this.lastChangeSummary,
});