forked from chipweinberger/flutter_blue_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bluetooth_service.dart
29 lines (25 loc) · 1016 Bytes
/
bluetooth_service.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2017, Paul DeMarco.
// All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of flutter_blue_plus;
class BluetoothService {
final Guid uuid;
final DeviceIdentifier deviceId;
final bool isPrimary;
final List<BluetoothCharacteristic> characteristics;
final List<BluetoothService> includedServices;
BluetoothService.fromProto(protos.BluetoothService p)
: uuid = Guid(p.uuid),
deviceId = DeviceIdentifier(p.remoteId),
isPrimary = p.isPrimary,
characteristics = p.characteristics
.map((c) => BluetoothCharacteristic.fromProto(c))
.toList(),
includedServices = p.includedServices
.map((s) => BluetoothService.fromProto(s))
.toList();
@override
String toString() {
return 'BluetoothService{uuid: $uuid, deviceId: $deviceId, isPrimary: $isPrimary, characteristics: $characteristics, includedServices: $includedServices}';
}
}