rssi property
int?
get
rssi
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
int? get rssi;