PairedDevice constructor

PairedDevice({
  1. int? batteryLevel,
  2. String? batteryStatus,
  3. String? deviceType,
  4. String? deviceVersion,
  5. List<String>? features,
  6. String? lastSyncTime,
  7. String? macAddress,
  8. String? name,
})

Implementation

PairedDevice({
  this.batteryLevel,
  this.batteryStatus,
  this.deviceType,
  this.deviceVersion,
  this.features,
  this.lastSyncTime,
  this.macAddress,
  this.name,
});