DeviceInfo constructor

const DeviceInfo({
  1. String? description,
  2. String? model,
  3. String? serialNumber,
  4. String? firmwareVersion,
})

Implementation

const DeviceInfo({
  this.description,
  this.model,
  this.serialNumber,
  this.firmwareVersion,
});