getConnections static method
Implementation
static List<Connection> getConnections() => _guard(() {
_logAction('getConnections');
final result = window.wagmiCore.getConnections();
return result.toDart
.map((jsConnection) => jsConnection.toDart)
.toList();
});