DeviceInfoModel constructor

DeviceInfoModel({
  1. String? uuid,
  2. String? name,
  3. String? type,
  4. String? version,
})

Implementation

DeviceInfoModel({
  this.uuid,
  this.name,
  this.type,
  this.version,
});