PerfStats constructor

const PerfStats({
  1. required double cpuMsAvg,
  2. double? gpuMsAvg,
})

Creates performance statistics.

Implementation

const PerfStats({required this.cpuMsAvg, this.gpuMsAvg});