descriptors property

List<BluetoothDescriptor> descriptors

Get Descriptors from known services

Implementation

List<BluetoothDescriptor> get descriptors {
  return _bmchr != null ? _bmchr!.descriptors.map((d) => BluetoothDescriptor.fromProto(d)).toList() : [];
}