bridges property
All of the bridges the user's device has access to on the network.
Throws Exception if any of the bridges do not have an IP address or an application key.
Implementation
List<Bridge> get bridges => List<Bridge>.from(_bridges, growable: false);
Implementation
set bridges(List<Bridge> bridges) {
for (Bridge bridge in bridges) {
if (bridge.ipAddress == null) {
throw Exception("All bridges must have an IP address");
}
if (bridge.applicationKey == null) {
throw Exception("All bridges must have an application key");
}
}
_bridges = bridges;
}