DeviceInfo constructor

DeviceInfo({
  1. String? uuid,
  2. String? deviceManufacturer,
  3. String? modelName,
  4. int? deviceType,
  5. int? platformType,
  6. bool? fromBleDevice,
})

Implementation

DeviceInfo({
  this.uuid,
  this.deviceManufacturer,
  this.modelName,
  this.deviceType,
  this.platformType,
  this.fromBleDevice,
});