connectionSummary property
A rundown of the connection strength of each device.
Implementation
String get connectionSummary {
final result = StringBuffer();
for (final socket in sockets) {
result.write("${socket.device.humanName}: ${(socket.connectionStrength.value * 100).toStringAsFixed(0)}%\n");
}
return result.toString().trim();
}