AppFrameTimingEntry constructor

const AppFrameTimingEntry({
  1. required int frameNumber,
  2. required int buildStartMicros,
  3. required double buildMs,
  4. required double rasterMs,
  5. required double vsyncOverheadMs,
  6. required double totalSpanMs,
})

Implementation

const AppFrameTimingEntry({
  required this.frameNumber,
  required this.buildStartMicros,
  required this.buildMs,
  required this.rasterMs,
  required this.vsyncOverheadMs,
  required this.totalSpanMs,
});