Device constructor

Device({
  1. String? deviceName = '',
  2. String? manufacturerName = '',
  3. String? productName = '',
  4. String? version = '',
  5. String? serialNumber = '',
  6. int deviceId = 0,
  7. int vendorId = 0,
  8. int productId = 0,
  9. int deviceClass = 0,
  10. int deviceSubclass = 0,
  11. int deviceProtocol = 0,
  12. int configurationCount = 0,
})

Implementation

Device({
  this.deviceName = '',
  this.manufacturerName = '',
  this.productName = '',
  this.version = '',
  this.serialNumber = '',
  this.deviceId = 0,
  this.vendorId = 0,
  this.productId = 0,
  this.deviceClass = 0,
  this.deviceSubclass = 0,
  this.deviceProtocol = 0,
  this.configurationCount = 0,
});