Device constructor

const Device(
  1. String? name,
  2. String? manufacturer,
  3. String? model,
  4. String? hardwareVersion,
  5. String? firmwareVersion,
  6. String? softwareVersion,
  7. String? localIdentifier,
  8. String? udiDeviceIdentifier,
)

Implementation

const Device(
  this.name,
  this.manufacturer,
  this.model,
  this.hardwareVersion,
  this.firmwareVersion,
  this.softwareVersion,
  this.localIdentifier,
  this.udiDeviceIdentifier,
);