Device constructor

Device({
  1. String? name,
  2. String? resolution,
  3. String? manufacturer,
  4. String? model,
  5. String? modelId,
  6. int? memorySize,
  7. DateTime? bootTime,
  8. String? formFactor,
  9. String? orientation,
  10. bool? rooted,
  11. String? osName,
  12. String? osVersion,
  13. bool? emulated,
  14. String? architecture,
  15. int? freeMemory,
  16. int? internalStorageFreeSize,
  17. int? externalStorageFreeSize,
  18. int? batteryLevel,
  19. String? carrier,
  20. String? networkType,
  21. String? ip,
  22. bool? proxy,
  23. bool? vpn,
})

Implementation

Device({
  this.name,
  this.resolution,
  this.manufacturer,
  this.model,
  this.modelId,
  this.memorySize,
  this.bootTime,
  this.formFactor,
  this.orientation,
  this.rooted,
  this.osName,
  this.osVersion,
  this.emulated,
  this.architecture,
  this.freeMemory,
  this.internalStorageFreeSize,
  this.externalStorageFreeSize,
  this.batteryLevel,
  this.carrier,
  this.networkType,
  this.ip,
  this.proxy,
  this.vpn,
});