diff --git a/lib/src/bluetooth_device.dart b/lib/src/bluetooth_device.dart index e6be12e7..d182767d 100644 --- a/lib/src/bluetooth_device.dart +++ b/lib/src/bluetooth_device.dart @@ -8,6 +8,8 @@ class BluetoothDevice { final DeviceIdentifier id; final String name; final BluetoothDeviceType type; + + BluetoothDevice({this.id, this.name, this.type}); BluetoothDevice.fromProto(protos.BluetoothDevice p) : id = new DeviceIdentifier(p.remoteId),