Device constructor

Device({
  1. String? arn,
  2. DeviceAvailability? availability,
  3. String? carrier,
  4. CPU? cpu,
  5. String? fleetName,
  6. String? fleetType,
  7. DeviceFormFactor? formFactor,
  8. int? heapSize,
  9. String? image,
  10. List<DeviceInstance>? instances,
  11. String? manufacturer,
  12. int? memory,
  13. String? model,
  14. String? modelId,
  15. String? name,
  16. String? os,
  17. DevicePlatform? platform,
  18. String? radio,
  19. bool? remoteAccessEnabled,
  20. bool? remoteDebugEnabled,
  21. Resolution? resolution,
})

Implementation

Device({
  this.arn,
  this.availability,
  this.carrier,
  this.cpu,
  this.fleetName,
  this.fleetType,
  this.formFactor,
  this.heapSize,
  this.image,
  this.instances,
  this.manufacturer,
  this.memory,
  this.model,
  this.modelId,
  this.name,
  this.os,
  this.platform,
  this.radio,
  this.remoteAccessEnabled,
  this.remoteDebugEnabled,
  this.resolution,
});