GraphicsStats constructor

GraphicsStats({
  1. List<GraphicsStatsBucket>? buckets,
  2. String? highInputLatencyCount,
  3. String? jankyFrames,
  4. String? missedVsyncCount,
  5. String? p50Millis,
  6. String? p90Millis,
  7. String? p95Millis,
  8. String? p99Millis,
  9. String? slowBitmapUploadCount,
  10. String? slowDrawCount,
  11. String? slowUiThreadCount,
  12. String? totalFrames,
})

Implementation

GraphicsStats({
  this.buckets,
  this.highInputLatencyCount,
  this.jankyFrames,
  this.missedVsyncCount,
  this.p50Millis,
  this.p90Millis,
  this.p95Millis,
  this.p99Millis,
  this.slowBitmapUploadCount,
  this.slowDrawCount,
  this.slowUiThreadCount,
  this.totalFrames,
});