DeviceInfo constructor

DeviceInfo({
  1. String? serialNumber,
  2. String? name,
  3. String? options,
  4. String? revision,
})

Returns a new DeviceInfo instance.

Implementation

DeviceInfo({
  this.serialNumber,
  this.name,
  this.options,
  this.revision,
});