GpuInfo constructor

const GpuInfo({
  1. required String name,
  2. int? recommendedMaxWorkingSetSize,
  3. int? registryID,
  4. MaxThreadsPerThreadgroup? maxThreadsPerThreadgroup,
  5. Map<String, bool>? supportsFamily,
})

Implementation

const GpuInfo({
  required this.name,
  this.recommendedMaxWorkingSetSize,
  this.registryID,
  this.maxThreadsPerThreadgroup,
  this.supportsFamily,
});