DeviceMetadata constructor

DeviceMetadata({
  1. String? cpuMake,
  2. String? cpuModel,
  3. String? deviceClass,
  4. int? glEsVersion,
  5. String? manufacturer,
  6. String? nativePlatform,
  7. String? productName,
  8. int? ramMb,
  9. int? screenDensityDpi,
  10. int? screenHeightPx,
  11. int? screenWidthPx,
})

Implementation

DeviceMetadata({
  this.cpuMake,
  this.cpuModel,
  this.deviceClass,
  this.glEsVersion,
  this.manufacturer,
  this.nativePlatform,
  this.productName,
  this.ramMb,
  this.screenDensityDpi,
  this.screenHeightPx,
  this.screenWidthPx,
});