rssiUpdates property
实现 FlutterBluetoothPluginPlatform.rssiUpdates。
参数、默认值、平台差异和推荐值见平台接口文档。
Implementation
@override
Stream<BluetoothRssiEvent> get rssiUpdates {
return _eventStream
.where((event) => event['type'] == 'rssi')
.map(BluetoothRssiEvent.fromMap);
}