updateLocalCharacteristicValue method
更新本地 GATT 特征缓存值。
参数:
serviceUuid:本地服务 UUID,无默认值。characteristicUuid:本地特征 UUID,无默认值。value:新的字节数组,无默认值。
该方法只更新本地值;如需主动推送给已订阅中心设备,请调用 notifyGattServerCharacteristic。
Implementation
Future<void> updateLocalCharacteristicValue({
required String serviceUuid,
required String characteristicUuid,
required List<int> value,
}) {
throw UnimplementedError(
'updateLocalCharacteristicValue() has not been implemented.',
);
}