descriptors property
List<BluetoothDescriptor>
get
descriptors
Get Descriptors from known services
Implementation
List<BluetoothDescriptor> get descriptors {
return _bmchr != null ? _bmchr!.descriptors.map((d) => BluetoothDescriptor.fromProto(d)).toList() : [];
}