DeviceInfo constructor

DeviceInfo({
  1. String? hwVersion,
  2. String? manufacturer,
  3. String? model,
  4. String? swVersion,
})

Implementation

DeviceInfo({
  this.hwVersion,
  this.manufacturer,
  this.model,
  this.swVersion,
});