AndroidDeviceInfo constructor

AndroidDeviceInfo({
  1. SystemInfo? system,
  2. CPUInfo? cpu,
  3. Android? android,
  4. DRMINFO? drmInfo,
  5. Memory? memory,
  6. CameraInfos? camera,
  7. Battery? battery,
  8. Display? display,
  9. Thermal? thermal,
  10. Network? network,
  11. SimInfo? simInfo,
  12. SystemFiles? systemFile,
})

This is the constructor for the class.

Implementation

AndroidDeviceInfo({
  this.system,
  this.cpu,
  this.android,
  this.drmInfo,
  this.memory,
  this.camera,
  this.battery,
  this.display,
  this.thermal,
  this.network,
  this.simInfo,
  this.systemFile,
});