Device constructor

Device({
  1. String? manufacturer,
  2. String? model,
  3. String? type,
  4. String? uid,
  5. String? version,
})

Implementation

Device({
  this.manufacturer,
  this.model,
  this.type,
  this.uid,
  this.version,
});