getMaximumWriteLength method

  1. @override
Future<int> getMaximumWriteLength(
  1. String deviceId, {
  2. bool withoutResponse = true,
})
override

实现 FlutterBluetoothPluginPlatform.getMaximumWriteLength

Web Bluetooth 不公开最大写入长度。

Implementation

@override
Future<int> getMaximumWriteLength(
  String deviceId, {
  bool withoutResponse = true,
}) async {
  return 0;
}