rssi property

  1. @override
int? rssi
override

The RSSI is the received signal strength indicator. It is the signal strength that the advertisement was received with in dBm (decibel-milliwatts).

This can be used to compute the path loss with txPower - rssi.

This value is technically a byte in size, but dart2js doesn't have that type so it is an int here.

Implementation

@override
int? get rssi => _advertisementReceivedEvent.rssi;