setGattServerServices method

  1. @override
Future<void> setGattServerServices(
  1. List<BluetoothGattService> services
)
override

实现 FlutterBluetoothPluginPlatform.setGattServerServices

Web Bluetooth 不支持本地 GATT Server。

Implementation

@override
Future<void> setGattServerServices(List<BluetoothGattService> services) {
  throw UnsupportedError(
      'GATT server APIs are not supported by Web Bluetooth.');
}